Skip to content

Commit c6a818e

Browse files
authoredJul 5, 2022
Merge pull request #67 from poiw-org/3.0.0
Version 3.0.0
2 parents f6cfa61 + 4bf5a92 commit c6a818e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1428
-1889
lines changed
 

‎README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ In colaboration with:
66
<img src="https://unistudents.gr/wp-content/uploads/2020/09/logo2-1024x341-1.png" data-canonical-src="https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png" width="200" />
77
\
88
\
9-
\
109
The project is maintained by po/iw (ποιώ), a Greek university team that supports Free/Libre and Open Source Software and hardware.
1110

1211
Saffron was built to help Greek universities aggregate and collect news and announcements from all of their faculties and serve them via a simple, well-documented and unified API.
1312

14-
The framework supports different ways of data collection, mainly API endpoints & web-scraping. It tries to ease the process of intergrating all data sources,
13+
The framework supports different ways of data collection, mainly API endpoints & web-scraping. It tries to ease the process of integrating all data sources,
1514
by abstracting data collection into a few simple and powerful functions.
1615

17-
For more information visit our [docs](https://saffron.poiw.org)
16+
For more information visit our [docs](https://saffron.poiw.org).

‎package.json

+15-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
{
22
"name": "@poiw/saffron",
3-
"version": "2.2.1",
4-
"description": "A fairly intuitive & powerful framework that enables you to collect & save articles and news from all over the web. ",
3+
"version": "3.0.0",
4+
"description": "A fairly intuitive & powerful framework that enables you to collect & save articles and news from all over the web. ",
55
"main": "dist/index.js",
6+
"types": "dist/index/d.ts",
67
"dependencies": {
7-
"axios": "^0.24.0",
8+
"axios": "^0.27.2",
89
"chalk": "^4.1.2",
9-
"cheerio": "^1.0.0-rc.10",
10-
"crypto-js": "^4.1.1",
11-
"glob": "^7.2.0",
12-
"ip": "^1.1.5",
10+
"cheerio": "^1.0.0-rc.12",
11+
"glob": "^7.2.3",
1312
"lodash": "^4.17.21",
14-
"luxon": "^2.2.0",
15-
"mongodb": "^4.2.1",
16-
"nanoid": "^3.1.30",
17-
"public-ip": "^4.0.4",
13+
"luxon": "^2.4.0",
14+
"nanoid": "^3.3.4",
1815
"rss-parser": "^3.12.0",
19-
"socket.io": "^4.4.0",
20-
"socket.io-client": "4.4.0",
16+
"socket.io": "^4.5.1",
17+
"socket.io-client": "4.5.1",
2118
"striptags": "^3.2.0"
2219
},
2320
"scripts": {
@@ -26,7 +23,7 @@
2623
"dev-worker": "cross-env NODE_ENV=development MODE=worker tsc-watch --onSuccess \"node --stack-trace-limit=100 ./test/worker.js\"",
2724
"docker-compose": "cd ./test/docker && sudo docker-compose up --remove-orphans ",
2825
"docker-compose-build": "cd ./test/docker && sudo docker-compose up --build --remove-orphans ",
29-
"build": "rm -rf dist && tsc"
26+
"build": "rm -rf dist && tsc -d"
3027
},
3128
"repository": {
3229
"type": "git",
@@ -40,15 +37,13 @@
4037
"homepage": "https://github.com/poiw-org/saffron#readme",
4138
"devDependencies": {
4239
"@types/cheerio": "^0.22.30",
43-
"@types/crypto-js": "^4.0.2",
44-
"@types/ip": "^1.1.0",
40+
"@types/glob": "^7.2.0",
4541
"@types/lodash": "^4.14.176",
4642
"@types/luxon": "^2.0.7",
47-
"@types/mongodb": "^4.0.7",
4843
"@types/xml2js": "^0.4.9",
4944
"cross-env": "^7.0.3",
50-
"tsc-watch": "^4.5.0",
51-
"typescript": "^4.4.4",
52-
"dotenv": "^10.0.0"
45+
"dotenv": "^10.0.0",
46+
"tsc-watch": "^4.6.2",
47+
"typescript": "^4.7.4"
5348
}
5449
}

0 commit comments

Comments
 (0)
Please sign in to comment.