Skip to content

Commit

Permalink
Merge branch 'master' into remove-old-resolutions
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed May 24, 2021
2 parents b6aa539 + 6b32fba commit ca62480
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### 2.0.1

- BUGFIX: avoid warning spew from babel about loose mode.
- DOCS: fixed docs link by @MrChocolatine

### 2.0.0

- BREAKING: see the [upgrade guide to v2](./docs/upgrade-guide-2.0.md) for the complete list of breaking changes in 2.0 with explanations and instructions.
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-auto-import/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-auto-import",
"version": "2.0.0",
"version": "2.0.1",
"description": "Zero-config import from NPM packages",
"keywords": [
"ember-addon",
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-auto-import/ts/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ export default class Package {

let plugins = [
[require.resolve('@babel/plugin-proposal-decorators'), { legacy: true }],
[require.resolve('@babel/plugin-proposal-class-properties'), { loose: true }],
[require.resolve('@babel/plugin-proposal-class-properties'), { loose: false }],
[
require.resolve('babel-plugin-htmlbars-inline-precompile'),
{
Expand Down
2 changes: 1 addition & 1 deletion test-scenarios/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@embroider/macros": "^0.40.0",
"@embroider/addon-shim": "^0.40.0",
"@types/fs-extra": "^5.0.4",
"ember-auto-import": "2.0.0",
"ember-auto-import": "2.0.1",
"fs-extra": "^6.0.1",
"leader-v1": "npm:ember-auto-import@1.7",
"leader-v2": "npm:ember-auto-import@1.11",
Expand Down

0 comments on commit ca62480

Please sign in to comment.