Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinRoy committed Nov 3, 2023
1 parent 4fe7b42 commit f791abc
Show file tree
Hide file tree
Showing 18 changed files with 377 additions and 698 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: pnpm install --frozen-lockfile
- run: pnpm run -r build
- run: pnpm run build-all

test:
needs: ['build']
Expand Down Expand Up @@ -65,8 +65,8 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: pnpm install --frozen-lockfile
- run: pnpm run -r build
- run: pnpm run -r test
- run: pnpm run build-all
- run: pnpm run test-all

lint:
runs-on: ubuntu-latest
Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,19 @@
"private": false,
"scripts": {
"lint": "eslint . && prettier --check .",
"build-all": "pnpm -r build",
"test-all": "pnpm -r test run",
"changeset": "changeset",
"release": "pnpm -r build && changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "8.47.0",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"prettier": "3.0.2",
"typescript": "5.1.6"
"eslint-plugin-import": "2.29.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
}
}
2 changes: 1 addition & 1 deletion packages/convert-touchstone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@lightmill/static-design": "workspace:*",
"@types/sax": "^1.2.4",
"cross-env": "^7.0.3",
"typescript": "5.1.6",
"typescript": "5.2.2",
"vite": "^4.4.8",
"vitest": "^0.34.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/log-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"prepublish": "pnpm run build"
},
"devDependencies": {
"typescript": "5.1.6",
"typescript": "5.2.2",
"vite": "^4.4.8",
"vitest": "^0.34.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/log-api/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"outDir": "dist",
"target": "es2020",
"lib": ["es2020"],
"module": "ES2020",
"module": "Node16",
"moduleResolution": "Node16",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/log-api/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"target": "es2020",
"lib": ["es2020"],
"module": "ES2020",
"module": "Node16",
"moduleResolution": "Node16",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
Expand Down
Loading

0 comments on commit f791abc

Please sign in to comment.