Skip to content

Commit

Permalink
- package version
Browse files Browse the repository at this point in the history
- adjusting peer dependency on rollup
  • Loading branch information
ezolenko committed Jan 18, 2019
1 parent d1082d8 commit 92ba81f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 25 deletions.
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -26473,7 +26473,7 @@ const typescript = (options) => {
context.info(`tslib version: ${tslibVersion}`);
if (!semver_30(tsModule.version, ">=2.4.0", { includePrerelease: true }))
throw new Error(`Installed typescript version '${tsModule.version}' is outside of supported range '>=2.4.0'`);
context.info(`rollup-plugin-typescript2 version: 0.19.1`);
context.info(`rollup-plugin-typescript2 version: 0.19.2`);
context.debug(() => `plugin options:\n${JSON.stringify(pluginOptions, (key, value) => key === "typescript" ? `version ${value.version}` : value, 4)}`);
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
watchMode = process.env.ROLLUP_WATCH === "true";
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -26469,7 +26469,7 @@ const typescript = (options) => {
context.info(`tslib version: ${tslibVersion}`);
if (!semver_30(tsModule.version, ">=2.4.0", { includePrerelease: true }))
throw new Error(`Installed typescript version '${tsModule.version}' is outside of supported range '>=2.4.0'`);
context.info(`rollup-plugin-typescript2 version: 0.19.1`);
context.info(`rollup-plugin-typescript2 version: 0.19.2`);
context.debug(() => `plugin options:\n${JSON.stringify(pluginOptions, (key, value) => key === "typescript" ? `version ${value.version}` : value, 4)}`);
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
watchMode = process.env.ROLLUP_WATCH === "true";
Expand Down
23 changes: 5 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "rollup-plugin-typescript2",
"version": "0.19.1",
"version": "0.19.2",
"description": "Seamless integration between Rollup and TypeScript. Now with errors.",
"main": "dist/rollup-plugin-typescript2.cjs.js",
"module": "dist/rollup-plugin-typescript2.es.js",
"jsnext:main": "dist/rollup-plugin-typescript2.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
"dist"
],
"keywords": [
"rollup-plugin-typescript2",
Expand Down Expand Up @@ -36,7 +35,7 @@
"tslib": "1.9.3"
},
"peerDependencies": {
"rollup": ">=1.0.0",
"rollup": ">=0.68.0",
"typescript": ">=2.4.0"
},
"devDependencies": {
Expand All @@ -55,7 +54,7 @@
"@types/semver": "5.5.0",
"rimraf": "2.6.3",
"rollup": "0.68.0",
"rollup-plugin-typescript2": "0.18.1",
"rollup-plugin-typescript2": "0.19.1",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-re": "1.0.7",
Expand Down

0 comments on commit 92ba81f

Please sign in to comment.