Skip to content

Commit

Permalink
- updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Mar 27, 2020
1 parent 034abe0 commit 69502e1
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 45 deletions.
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.cjs.js
Expand Up @@ -17,7 +17,7 @@ var pluginutils = require('@rollup/pluginutils');
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};

function commonjsRequire () {
throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs');
throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs');
}

function createCommonjsModule(fn, module) {
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.es.js
Expand Up @@ -11,7 +11,7 @@ import { createFilter as createFilter$1 } from '@rollup/pluginutils';
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};

function commonjsRequire () {
throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs');
throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs');
}

function createCommonjsModule(fn, module) {
Expand Down
82 changes: 45 additions & 37 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -54,9 +54,9 @@
"lodash": "4.17.15",
"object-hash": "2.0.3",
"rimraf": "3.0.2",
"rollup": "^2.2.0 ",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup": "^2.2.0",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"rollup-plugin-re": "1.0.7",
"rollup-plugin-typescript2": "0.26.0",
"rollup-watch": "4.3.1",
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.base.js
@@ -1,5 +1,5 @@
import resolve from "rollup-plugin-node-resolve";
import commonjs from "rollup-plugin-commonjs";
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import replace from "rollup-plugin-re";

const pkg = require("./package.json");
Expand Down Expand Up @@ -30,7 +30,7 @@ export default {
"$TS_VERSION_RANGE": pkg.peerDependencies.typescript,
},
}),
resolve({ jsnext: true, preferBuiltins: true }),
resolve({ jsnext: true, preferBuiltins: true, }),
commonjs
({
include: "node_modules/**",
Expand Down

0 comments on commit 69502e1

Please sign in to comment.