Skip to content

Commit

Permalink
Merge branch 'bluelovers-pr/node-v17-tslib-002'
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Nov 17, 2021
2 parents b76ff69 + 215173f commit 0658aa0
Show file tree
Hide file tree
Showing 7 changed files with 2,048 additions and 17 deletions.
5 changes: 3 additions & 2 deletions dist/rollup-plugin-typescript2.cjs.js
Expand Up @@ -25241,8 +25241,9 @@ let tslibSource;
let tslibVersion;
try {
// tslint:disable-next-line:no-string-literal no-var-requires
const tslibPackage = require("tslib/package.json");
const tslibPath = require.resolve("tslib/" + tslibPackage.module);
const _ = require("@yarn-tool/resolve-package").resolvePackage('tslib');
const tslibPackage = _.pkg;
const tslibPath = _.resolveLocation(tslibPackage.module);
tslibSource = fs.readFileSync(tslibPath, "utf8");
tslibVersion = tslibPackage.version;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.cjs.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/rollup-plugin-typescript2.es.js
Expand Up @@ -25210,8 +25210,9 @@ let tslibSource;
let tslibVersion;
try {
// tslint:disable-next-line:no-string-literal no-var-requires
const tslibPackage = require("tslib/package.json");
const tslibPath = require.resolve("tslib/" + tslibPackage.module);
const _ = require("@yarn-tool/resolve-package").resolvePackage('tslib');
const tslibPackage = _.pkg;
const tslibPath = _.resolveLocation(tslibPackage.module);
tslibSource = readFileSync(tslibPath, "utf8");
tslibVersion = tslibPackage.version;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.es.js.map

Large diffs are not rendered by default.

0 comments on commit 0658aa0

Please sign in to comment.