Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ndaidong committed Dec 5, 2023
1 parent 0fd6c66 commit 2ec2573
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/browser-article-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
},
"dependencies": {
"express": "^4.18.2",
"got": "^13.0.0"
"got": "^14.0.0"
}
}
4 changes: 2 additions & 2 deletions examples/bun-article-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"start": "bun run index.ts"
},
"devDependencies": {
"bun-types": "^0.6.13"
"bun-types": "^1.0.15"
},
"dependencies": {
"@extractus/article-extractor": "latest",
"hono": "^3.2.7"
"hono": "^3.11.2"
}
}
4 changes: 2 additions & 2 deletions examples/deno-article-parser/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "deno-article-parser",
"version": "1.0.0",
"imports": {
"serve": "https://deno.land/std@0.203.0/http/server.ts",
"hono": "https://deno.land/x/hono@v3.7.2/mod.ts",
"serve": "https://deno.land/std/http/server.ts",
"hono": "https://deno.land/x/hono@v3.11.2/mod.ts",
"article-extractor": "https://esm.sh/@extractus/article-extractor"
},
"tasks": {
Expand Down
3 changes: 2 additions & 1 deletion examples/tsnode-article-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
"name": "tsnode-article-parser",
"version": "1.0.0",
"main": "index.ts",
"type": "module",
"scripts": {
"prestart": "npx tsc",
"start": "node dist/index.js"
},
"devDependencies": {
"typescript": "^5.1.6"
"typescript": "^5.3.2"
},
"dependencies": {
"@extractus/article-extractor": "latest",
Expand Down
4 changes: 2 additions & 2 deletions examples/tsnode-article-parser/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "es6",
"esModuleInterop": true,
"target": "es6",
"target": "esnext",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist"
Expand Down

0 comments on commit 2ec2573

Please sign in to comment.