Skip to content

Commit

Permalink
Fix lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
Guy Carmeli committed May 22, 2024
1 parent 51b09fa commit ab6d495
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- run: yarn --frozen-lockfile
- run: yarn workspace react-obsidian run build-local
- run: yarn build
- run: yarn workspace react-obsidian run lint
- run: yarn workspace react-obsidian run test
- run: yarn workspace @obsidian/eslint-plugin-obsidian run lint
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"private": true,
"scripts": {
"test": "yarn workspaces foreach run test",
"lint": "yarn workspaces foreach run lint"
"lint": "yarn workspaces foreach run lint",
"build": "yarn workspaces foreach run build"
},
"workspaces": [
"packages/*"
Expand Down
1 change: 1 addition & 0 deletions packages/eslint-plugin-obsidian/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"main": "dist/index.js",
"version": "2.4.0",
"scripts": {
"build": "npx tsc",
"test": "npx jest",
"lint": "eslint rules --ignore-pattern '*.d.ts' --ext .ts,.tsx,.js"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/react-obsidian/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"prepack": "npm run lint && tsc --project tsconfig.prod.json",
"lint": "npx eslint src transformers test --ignore-pattern '*.d.ts' --ext .ts,.tsx,.js",
"build-local": "tsc --project tsconfig.json",
"build": "tsc --project tsconfig.json",
"pretest": "tsc --project tsconfig.json",
"test": "npx jest",
"test-coverage": "npx jest --coverage"
Expand Down

0 comments on commit ab6d495

Please sign in to comment.