-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update base workflows and lockfile for pnpm 9, set
packageManager
(#45
) * Update base workflows and lockfile for pnpm 9 * npx create-release-plan-setup@latest --update * Update some build dependencies to try to get 4.4 and 3.28 passing * Re-roll lockfile * Resolve peer issues in ember-try 4.4 and lower * Don't use get-source-channel-url * Downgrade @ember/test-helpers for 4.4 and 3.28 * Pin more ember-try deps * Update ember-resolver and ember-data for 4.4 and 3.28 * Can I not read? bump ember-resolver down again * Update npmrc settings * Update scripts * Update npmrc * We have to inject due to peer
- Loading branch information
1 parent
cc6d153
commit 207378e
Showing
10 changed files
with
10,590 additions
and
7,537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
registry = https://registry.npmjs.org | ||
# can't ignore scripts right now because | ||
# we rely on "prepare" for CI | ||
ignore-scripts = false | ||
|
||
#################### | ||
# super strict mode | ||
#################### | ||
auto-install-peers=false | ||
strict-peer-dependents=true | ||
resolve-peers-from-workspace-root=false | ||
hoist-workspace-packages=false | ||
|
||
################ | ||
# Optimizations | ||
################ | ||
# Less strict, but required for tooling to not barf on duplicate peer trees. | ||
# (many libraries declare the same peers, which resolve to the same | ||
# versions) | ||
dedupe-peer-dependents=true | ||
dedupe-direct-deps=true | ||
|
||
################ | ||
# Compatibility | ||
################ | ||
# highest is what everyone is used to, but | ||
# not ensuring folks are actually compatible with declared ranges. | ||
resolution-mode=highest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"lint": "pnpm --filter '*' lint", | ||
"lint:fix": "pnpm --filter '*' lint:fix", | ||
"prepare": "pnpm build", | ||
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow", | ||
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow", | ||
"start:addon": "pnpm --filter ember-mirage start --no-watch.clearScreen", | ||
"start:test-app": "pnpm --filter test-app start", | ||
"test": "pnpm --filter '*' test", | ||
|
@@ -19,9 +19,13 @@ | |
"prettier-plugin-ember-template-tag": "^1.1.0", | ||
"release-plan": "^0.9.0" | ||
}, | ||
"packageManager": "[email protected]", | ||
"pnpm": { | ||
"overrides": { | ||
"@types/eslint": "^7.0.0" | ||
}, | ||
"peerDependencyRules": { | ||
"ignoreMissing": ["webpack"] | ||
} | ||
} | ||
} |
Oops, something went wrong.