-
Notifications
You must be signed in to change notification settings - Fork 41
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
Fix CI #1216
Fix CI #1216
Conversation
6ed4f9c
to
5ef0454
Compare
@@ -89,5 +90,9 @@ | |||
"versionCompatibility": { | |||
"ember": "3.8 || 3.12 || 3.16 || 3.20 || >=3.24" | |||
} | |||
}, | |||
"volta": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be useful for future Volta users, though I understand if you'd want this removed.
@@ -1,8 +1,9 @@ | |||
lockfileVersion: 5.4 | |||
lockfileVersion: 5.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've used pnpm v6.35.1 to install @ember/string
, which is the same version used in CI. This means that this lock file was generated using a newer version, so pnpm downgrades it.
const isProduction = process.env.EMBER_ENV === 'production'; | ||
|
||
if (isCI || isProduction) { | ||
browsers.push('ie 11'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing ie 11
resolves (0 , _emberBabel.regeneratorRuntime) is not a function
. If ie 11
is still needed, I can look for a different more correct solution.
@@ -32,6 +32,7 @@ | |||
"devDependencies": { | |||
"@babel/core": "7.21.3", | |||
"@ember/optional-features": "2.0.0", | |||
"@ember/string": "3.1.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolves the @ember/string
related deprecations.
Should unblock the new release.