Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use pnpm 9 #194

Merged
merged 7 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ember-scoped-css-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,8 @@
"ember-cli-htmlbars",
"ember-template-imports"
]
},
"volta": {
"extends": "../package.json"
}
}
3 changes: 3 additions & 0 deletions ember-scoped-css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,8 @@
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"volta": {
"extends": "../package.json"
}
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"volta": {
"node": "22.2.0",
"pnpm": "8.15.8"
"pnpm": "9.1.2"
},
"pnpm": {
"peerDependencyRules": {
Expand All @@ -32,6 +32,7 @@
]
},
"overrides": {
"babel-plugin-ember-template-compilation": "2.2.1",
"@glimmer/validator": "0.84.3",
"@types/eslint": "^8.0.0"
}
Expand Down
25,069 changes: 12,039 additions & 13,030 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions test-apps/classic-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,8 @@
},
"dependencies": {
"ember-resources": "^6.4.0"
},
"volta": {
"extends": "../../package.json"
}
}
10 changes: 6 additions & 4 deletions test-apps/embroider-app/config/ember-try.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict';

const getChannelURL = require('ember-source-channel-url');

module.exports = async function () {
const { default: latestVersion } = await import('latest-version');

return {
usePnpm: true,
scenarios: [
Expand Down Expand Up @@ -42,15 +42,17 @@ module.exports = async function () {
name: 'ember-release',
npm: {
devDependencies: {
'ember-source': await getChannelURL('release'),
'ember-source': await latestVersion('ember-source'),
},
},
},
{
name: 'ember-beta',
npm: {
devDependencies: {
'ember-source': await getChannelURL('beta'),
'ember-source': await latestVersion('ember-source', {
version: 'beta',
}),
},
},
},
Expand Down
4 changes: 4 additions & 0 deletions test-apps/embroider-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"eslint-plugin-ember": "^12.1.0",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-qunit": "^8.1.1",
"latest-version": "^9.0.0",
"loader.js": "^4.7.0",
"prettier": "^3.2.5",
"qunit": "^2.20.0",
Expand All @@ -76,5 +77,8 @@
},
"ember": {
"edition": "octane"
},
"volta": {
"extends": "../../package.json"
}
}
4 changes: 4 additions & 0 deletions test-apps/pods-classic-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,16 @@
"qunit": "^2.19.4",
"qunit-dom": "^3.0.0",
"tracked-built-ins": "^3.2.0",
"typescript": "^5.4.5",
"webpack": "^5.91.0"
},
"engines": {
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
},
"volta": {
"extends": "../../package.json"
}
}
4 changes: 4 additions & 0 deletions test-apps/pods-embroider-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,16 @@
"qunit": "^2.19.4",
"qunit-dom": "^3.0.0",
"tracked-built-ins": "^3.2.0",
"typescript": "^5.4.5",
"webpack": "^5.91.0"
},
"engines": {
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
},
"volta": {
"extends": "../../package.json"
}
}
3 changes: 3 additions & 0 deletions test-apps/v2-addon-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,8 @@
"peerDependencies": {
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2"
},
"volta": {
"extends": "../../package.json"
}
}
3 changes: 3 additions & 0 deletions test-apps/v2-addon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,8 @@
".": "./dist/index.js",
"./*": "./dist/*.js",
"./addon-main.js": "./addon-main.cjs"
},
"volta": {
"extends": "../../package.json"
}
}
Loading