Skip to content

Commit

Permalink
move to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
candunaj committed May 25, 2023
1 parent d833078 commit 0b469db
Show file tree
Hide file tree
Showing 9 changed files with 14,442 additions and 29,428 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 12.x
node-version: 14.x
cache: npm
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
run: pnpm run lint
- name: Run Tests
run: npm run test:ember
run: pnpm run test:ember
working-directory: test-app

floating:
Expand All @@ -35,12 +35,12 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12.x
node-version: 14.x
cache: npm
- name: Install Dependencies
run: npm install --no-shrinkwrap
run: pnpm install --no-shrinkwrap
- name: Run Tests
run: npm run test:ember
run: pnpm run test:ember
working-directory: test-app

try-scenarios:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 12.x
node-version: 14.x
cache: npm
- name: Install Dependencies
run: npm ci
Expand Down
6,053 changes: 0 additions & 6,053 deletions addon/package-lock.json

This file was deleted.

3 changes: 1 addition & 2 deletions addon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
},
"scripts": {
"build": "rollup --config",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:js": "eslint .",
"lint": "eslint .",
"prepublishOnly": "rollup --config",
"start": "rollup --config --watch"
},
Expand Down
3 changes: 0 additions & 3 deletions package-lock.json

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"test-app"
],
"scripts":{
"lint": "npm run --prefix addon lint && npm run --prefix test-app lint"
"lint": "pnpm run --filter test-app lint && pnpm run --filter addon lint"
},
"volta": {
"node": "14.18.1"
Expand Down
Loading

0 comments on commit 0b469db

Please sign in to comment.