Skip to content

Commit

Permalink
fix: add optional peer dep on ember data
Browse files Browse the repository at this point in the history
Without this, the `dependencyStatisfies` embroider macro won't work -
see embroider-build/embroider#1169 (comment)
for details.
  • Loading branch information
czosel authored and anehx committed Mar 6, 2024
1 parent 78fd9b5 commit 033cb84
Show file tree
Hide file tree
Showing 3 changed files with 141 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"stylelint-prettier": "^5.0.0",
"stylelint-scss": "6.1.0"
},
"packageManager": "pnpm@8.11.0",
"packageManager": "pnpm@8.15.4",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
Expand Down
8 changes: 7 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,19 @@
"webpack": "5.90.0"
},
"peerDependencies": {
"ember-source": "^4.0.0"
"ember-source": "^4.0.0",
"ember-data": "*"
},
"dependenciesMeta": {
"@projectcaluma/ember-testing": {
"injected": true
}
},
"peerDependenciesMeta": {
"ember-data": {
"optional": true
}
},
"engines": {
"node": ">= 18"
},
Expand Down
147 changes: 133 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 033cb84

Please sign in to comment.