Skip to content

Commit c20a19f

Browse files
committed
- updating readme and package version
1 parent 889c716 commit c20a19f

File tree

5 files changed

+12
-20
lines changed

5 files changed

+12
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Otherwise the plugin should work in watch mode. Make sure to run a normal build
206206
### Requirements
207207

208208
TypeScript `2.4+`
209-
Rollup `0.68+`
209+
Rollup `1.26.0+`
210210
Node `6.4.0+` (basic es6 support)
211211

212212
### Reporting bugs

dist/rollup-plugin-typescript2.cjs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27283,7 +27283,7 @@ const typescript = (options) => {
2728327283
context.info(`rollup version: ${this.meta.rollupVersion}`);
2728427284
if (!semver_32(tsModule.version, ">=2.4.0", { includePrerelease: true }))
2728527285
throw new Error(`Installed typescript version '${tsModule.version}' is outside of supported range '>=2.4.0'`);
27286-
context.info(`rollup-plugin-typescript2 version: 0.24.4`);
27286+
context.info(`rollup-plugin-typescript2 version: 0.25.0`);
2728727287
context.debug(() => `plugin options:\n${JSON.stringify(pluginOptions, (key, value) => key === "typescript" ? `version ${value.version}` : value, 4)}`);
2728827288
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
2728927289
context.debug(() => `tsconfig path: ${tsConfigPath}`);

dist/rollup-plugin-typescript2.es.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27277,7 +27277,7 @@ const typescript = (options) => {
2727727277
context.info(`rollup version: ${this.meta.rollupVersion}`);
2727827278
if (!semver_32(tsModule.version, ">=2.4.0", { includePrerelease: true }))
2727927279
throw new Error(`Installed typescript version '${tsModule.version}' is outside of supported range '>=2.4.0'`);
27280-
context.info(`rollup-plugin-typescript2 version: 0.24.4`);
27280+
context.info(`rollup-plugin-typescript2 version: 0.25.0`);
2728127281
context.debug(() => `plugin options:\n${JSON.stringify(pluginOptions, (key, value) => key === "typescript" ? `version ${value.version}` : value, 4)}`);
2728227282
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
2728327283
context.debug(() => `tsconfig path: ${tsConfigPath}`);

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup-plugin-typescript2",
3-
"version": "0.24.4",
3+
"version": "0.25.0",
44
"description": "Seamless integration between Rollup and TypeScript. Now with errors.",
55
"main": "dist/rollup-plugin-typescript2.cjs.js",
66
"module": "dist/rollup-plugin-typescript2.es.js",

0 commit comments

Comments
 (0)