-
Notifications
You must be signed in to change notification settings - Fork 1.2k
peer errors with app blueprint #9933
Copy link
Copy link
Closed
Labels
Description
Thank you for taking the time to open an issue!
For bug reports please include the following section in your issue details.
If you include instructions on how to reproduce the bug or a failing test case
it will make it easier for us to track down the issue you're having.
Output from ember version --verbose && npm --version && yarn --version:
❯ ember version --verbose && npm --version && yarn --version && pnpm --version
ember-cli: 4.4.0
node: 16.13.1
v8: 9.4.146.24-node.14
uv: 1.42.0
zlib: 1.2.11
brotli: 1.0.9
ares: 1.18.1
modules: 93
nghttp2: 1.45.1
napi: 8
llhttp: 6.0.4
openssl: 1.1.1l+quic
cldr: 39.0
icu: 69.1
tz: 2021a
unicode: 13.0
ngtcp2: 0.1.0-DEV
nghttp3: 0.1.0-DEV
os: linux x64
8.6.0
1.22.11
7.1.6
Error:
.
├─┬ @ember/test-helpers
│ └─┬ ember-destroyable-polyfill
│ └─┬ ember-compatibility-helpers
│ └─┬ babel-plugin-debug-macros
│ └── ✕ missing peer @babel/core@^7.0.0-beta.42
├─┬ @glimmer/component
│ └─┬ ember-cli-typescript
│ └─┬ @babel/plugin-transform-typescript
│ ├── ✕ missing peer @babel/core@^7.0.0-0
│ ├─┬ @babel/helper-create-class-features-plugin
│ │ └── ✕ missing peer @babel/core@^7.0.0
│ └─┬ @babel/plugin-syntax-typescript
│ └── ✕ missing peer @babel/core@^7.0.0-0
├─┬ ember-data
│ └─┬ @ember-data/adapter
│ └─┬ @ember-data/private-build-infra
│ ├─┬ @babel/plugin-transform-block-scoping
│ │ └── ✕ missing peer @babel/core@^7.0.0-0
│ └─┬ babel-plugin-debug-macros
│ └── ✕ missing peer @babel/core@^7.0.0
└─┬ ember-load-initializers
└─┬ ember-cli-typescript
├─┬ @babel/plugin-proposal-class-properties
│ └── ✕ missing peer @babel/core@^7.0.0-0
└─┬ @babel/plugin-transform-typescript
└── ✕ missing peer @babel/core@^7.0.0-0
Peer dependencies that should be installed:
@babel/core@">=7.0.0 <8.0.0"
I can resolve by adding @babel/core to my dev deps
App was created with:
ember new my-app --skip-npm
cd my-app
pnpm install # same errors would be reported by yarn 3
Reactions are currently unavailable