Skip to content

Commit

Permalink
0.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hong6316 committed Feb 17, 2023
2 parents d35a92e + d055315 commit cfd1ef7
Show file tree
Hide file tree
Showing 4 changed files with 35,102 additions and 9,462 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.0 (Jan 31, 2023)
## 0.1.1 (February 17, 2023)

* Updated Babel support:
* Added `plugin-proposal-export-namespace-from`, `plugin-proposal-numeric-separator`, `plugin-syntax-dynamic-import`, `plugin-proposal-optional-chaining`, and `plugin-proposal-nullish-coalescing-operator`

## 0.1.0 (January 31, 2023)

* Initial release
10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,22 @@ module.exports = function (api) {

// Stage 2
[require('@babel/plugin-proposal-decorators').default, false],
// require('@babel/plugin-proposal-export-namespace-from').default,
// require('@babel/plugin-proposal-numeric-separator').default,
require('@babel/plugin-proposal-export-namespace-from').default,
require('@babel/plugin-proposal-numeric-separator').default,
// '@babel/plugin-proposal-function-sent',
// '@babel/plugin-proposal-throw-expressions',

// Stage 3
// require('@babel/plugin-syntax-dynamic-import').default,
require('@babel/plugin-syntax-dynamic-import').default,
[require('@babel/plugin-proposal-class-properties').default, {loose: true}],
[require('@babel/plugin-proposal-private-methods').default, {loose: true}],
[require('@babel/plugin-proposal-private-property-in-object').default, {loose: true}],
// '@babel/plugin-syntax-import-meta',
// '@babel/plugin-proposal-json-strings'

// Soon to be included within pre-env; include here until then
// require('@babel/plugin-proposal-optional-chaining').default,
// require('@babel/plugin-proposal-nullish-coalescing-operator').default,
require('@babel/plugin-proposal-optional-chaining').default,
require('@babel/plugin-proposal-nullish-coalescing-operator').default,

!es5Standalone && [
require('@babel/plugin-transform-runtime').default,
Expand Down
Loading

0 comments on commit cfd1ef7

Please sign in to comment.