Skip to content

Commit

Permalink
- updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Aug 7, 2020
1 parent b33126b commit 76274d4
Show file tree
Hide file tree
Showing 7 changed files with 1,114 additions and 711 deletions.
788 changes: 491 additions & 297 deletions dist/rollup-plugin-typescript2.cjs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.cjs.js.map

Large diffs are not rendered by default.

788 changes: 491 additions & 297 deletions dist/rollup-plugin-typescript2.es.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.es.js.map

Large diffs are not rendered by default.

216 changes: 117 additions & 99 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions package.json
Expand Up @@ -29,11 +29,11 @@
"lint": "tslint -c ./tslint.json src/*.ts ./*.js"
},
"dependencies": {
"@rollup/pluginutils": "^3.0.8",
"@rollup/pluginutils": "^3.1.0",
"find-cache-dir": "^3.3.1",
"fs-extra": "8.1.0",
"resolve": "1.15.1",
"tslib": "1.11.2"
"resolve": "1.17.0",
"tslib": "2.0.1"
},
"peerDependencies": {
"rollup": ">=1.26.3",
Expand All @@ -54,15 +54,15 @@
"lodash": "4.17.19",
"object-hash": "2.0.3",
"rimraf": "3.0.2",
"rollup": "^2.2.0",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"rollup": "^2.23.0",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "8.4.0",
"rollup-plugin-re": "1.0.7",
"rollup-plugin-typescript2": "0.26.0",
"rollup-plugin-typescript2": "0.27.1",
"rollup-watch": "4.3.1",
"semver": "7.1.3",
"tslint": "6.1.0",
"typescript": "3.8.3"
"semver": "7.3.2",
"tslint": "6.1.3",
"typescript": "3.9.7"
},
"repository": {
"type": "git",
Expand Down
9 changes: 3 additions & 6 deletions rollup.config.base.js
Expand Up @@ -34,12 +34,6 @@ export default {
commonjs
({
include: "node_modules/**",
namedExports:
{
"colors/safe": [ "green", "white", "red", "yellow", "blue" ],
"lodash": [ "compact", "get", "each", "isEqual", "some", "filter", "endsWith", "map", "has", "isFunction", "concat", "find", "defaults", "assign", "merge", "flatMap", "chain" ],
// "fs-extra": [ "renameSync", "removeSync", "ensureFileSync", "writeJsonSync", "readJsonSync", "existsSync", "readdirSync", "emptyDirSync" ],
},
}),
],

Expand All @@ -49,18 +43,21 @@ export default {
file: pkg.main,
sourcemap: true,
banner: "/* eslint-disable */",
exports: "auto",
},
{
format: "es",
file: pkg.module,
sourcemap: true,
banner: "/* eslint-disable */",
exports: "auto",
},
{
format: "es",
file: "build-self/" + pkg.module,
sourcemap: true,
banner: "/* eslint-disable */",
exports: "auto",
},
],
};

0 comments on commit 76274d4

Please sign in to comment.