Skip to content

Commit

Permalink
fix dependecies
Browse files Browse the repository at this point in the history
  • Loading branch information
sywhb committed Mar 8, 2024
1 parent cf1a616 commit a6f58a3
Show file tree
Hide file tree
Showing 7 changed files with 1,434 additions and 1,494 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
node-version: [ 14.x, 16.x, 18.x, 19.x ]
node-version: [ 18.x, 20.x ]
max-parallel: 24
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

2 changes: 1 addition & 1 deletion esbuild.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ esbuild.build({
...builtins],
format: 'cjs',
watch: !prod,
target: 'es2018',
target: 'es2021',
logLevel: "info",
sourcemap: prod ? false : 'inline',
treeShaking: true,
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"@types/luxon": "^3.1.0",
"@types/markdown-escape": "^1.1.0",
"@types/mustache": "^4.2.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
Expand All @@ -50,7 +49,7 @@
"typescript": "4.7.4"
},
"dependencies": {
"@omnivore-app/api": "^1.0.0",
"@omnivore-app/api": "^1.0.1",
"diff-match-patch": "^1.0.5",
"lodash": "^4.17.21",
"luxon": "^3.1.1",
Expand All @@ -59,7 +58,7 @@
"out-of-character": "^1.2.1"
},
"volta": {
"node": "16.15.1",
"node": "18.18.0",
"yarn": "1.22.19"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"esModuleInterop": true,
"lib": ["ES2021", "DOM"]
},
"include": ["**/*.ts"]
"include": ["src/**/*.ts"]
}
2,914 changes: 1,428 additions & 1,486 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit a6f58a3

Please sign in to comment.