Skip to content

Commit

Permalink
- build
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Sep 9, 2019
1 parent dca40be commit f3ba061
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
5 changes: 3 additions & 2 deletions dist/rollup-plugin-typescript2.cjs.js
Expand Up @@ -25057,6 +25057,7 @@ function parseTsConfig(context, pluginOptions) {

// The injected id for helpers.
const TSLIB = "tslib";
const TSLIB_VIRTUAL = "\0tslib.js";
let tslibSource;
let tslibVersion;
try {
Expand Down Expand Up @@ -27302,7 +27303,7 @@ const typescript = (options) => {
},
resolveId(importee, importer) {
if (importee === TSLIB)
return "\0" + TSLIB;
return TSLIB_VIRTUAL;
if (!importer)
return;
importer = normalize(importer);
Expand All @@ -27326,7 +27327,7 @@ const typescript = (options) => {
return;
},
load(id) {
if (id === "\0" + TSLIB)
if (id === TSLIB_VIRTUAL)
return tslibSource;
return null;
},
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 @@ -25051,6 +25051,7 @@ function parseTsConfig(context, pluginOptions) {

// The injected id for helpers.
const TSLIB = "tslib";
const TSLIB_VIRTUAL = "\0tslib.js";
let tslibSource;
let tslibVersion;
try {
Expand Down Expand Up @@ -27296,7 +27297,7 @@ const typescript = (options) => {
},
resolveId(importee, importer) {
if (importee === TSLIB)
return "\0" + TSLIB;
return TSLIB_VIRTUAL;
if (!importer)
return;
importer = normalize(importer);
Expand All @@ -27320,7 +27321,7 @@ const typescript = (options) => {
return;
},
load(id) {
if (id === "\0" + TSLIB)
if (id === TSLIB_VIRTUAL)
return tslibSource;
return null;
},
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.es.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/tslib.d.ts
@@ -1,4 +1,5 @@
export declare const TSLIB = "tslib";
export declare const TSLIB_VIRTUAL = "\0tslib.js";
export declare let tslibSource: string;
export declare let tslibVersion: string;
//# sourceMappingURL=tslib.d.ts.map
2 changes: 1 addition & 1 deletion dist/tslib.d.ts.map

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

0 comments on commit f3ba061

Please sign in to comment.