Skip to content

Commit d0d992e

Browse files
committed
Prep for release
1 parent adfba7b commit d0d992e

File tree

5 files changed

+28
-20
lines changed

5 files changed

+28
-20
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.10.0] - 2020-05-08
11+
12+
### Changed
13+
14+
- `rollup-plugin-babel` has been migrated to its new namespaced version `@rollup/plugin-babel` to squash a warning.
15+
- Other dependency updates.
16+
1017
## [0.9.0] - 2020-03-28
1118

1219
### Added

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
"@babel/plugin-proposal-class-properties": "^7.8.3",
4444
"@babel/preset-env": "^7.9.0",
4545
"@babel/preset-typescript": "^7.9.0",
46+
"@rollup/plugin-babel": "^5.0.0",
4647
"@rollup/plugin-commonjs": "^11.0.1",
4748
"@rollup/plugin-json": "^4.0.1",
4849
"@rollup/plugin-node-resolve": "^7.0.0",
4950
"builtin-modules": "^3.1.0",
5051
"mri": "^1.1.4",
5152
"rollup": "^2.2.0",
52-
"rollup-plugin-babel": "^4.3.3",
53-
"rollup-plugin-dts": "^1.3.0",
53+
"rollup-plugin-dts": "^1.4.1",
5454
"rollup-plugin-terser": "^5.1.2",
5555
"tiny-glob": "^0.2.6",
5656
"typescript": "^3.8.3"
@@ -60,7 +60,7 @@
6060
"@newswire/prettier-config": "^3.0.0",
6161
"@types/fs-extra": "^8.0.1",
6262
"@types/mri": "^1.1.0",
63-
"@types/node": "^13.5.0",
63+
"@types/node": "^13.13.5",
6464
"np": "^5.1.2",
6565
"prettier": "^2.0.2"
6666
},

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import babelPluginTransformTypeScript from '@babel/plugin-transform-typescript';
88
import babelPluginClassProperties from '@babel/plugin-proposal-class-properties';
99
import builtinModules from 'builtin-modules';
1010
import { rollup, watch } from 'rollup';
11-
import babel from 'rollup-plugin-babel';
11+
import babel from '@rollup/plugin-babel';
1212
import commonjs from '@rollup/plugin-commonjs';
1313
import dts from 'rollup-plugin-dts';
1414
import json from '@rollup/plugin-json';
@@ -114,6 +114,7 @@ async function createRollupConfig({
114114
],
115115
[babelPluginClassProperties, { loose: true }],
116116
],
117+
babelHelpers: 'bundled',
117118
}),
118119
compress &&
119120
terser({

src/vendor.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ declare module '@babel/plugin-proposal-class-properties';
22
declare module '@babel/plugin-transform-typescript';
33
declare module '@babel/preset-env';
44
declare module '@babel/preset-typescript';
5-
declare module 'rollup-plugin-babel';
5+
declare module '@rollup/plugin-babel';

0 commit comments

Comments
 (0)