This commit is contained in:
Eugene Zolenko 2019-02-19 12:25:57 -07:00
parent 4bf049fc33
commit ac9b15defa
6 changed files with 6 additions and 13 deletions

2
dist/index.d.ts.map vendored
View File

@ -1 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AASpC,OAAO,EAAE,UAAU,EAA0E,MAAM,QAAQ,CAAC;AAE5G,QAAA,MAAM,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,CAuW7C,CAAC;AAEF,eAAe,UAAU,CAAC"}
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AASpC,OAAO,EAAE,UAAU,EAA0E,MAAM,QAAQ,CAAC;AAE5G,QAAA,MAAM,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,CAoW7C,CAAC;AAEF,eAAe,UAAU,CAAC"}

View File

@ -26596,12 +26596,10 @@ const typescript = (options) => {
return undefined;
},
generateBundle(bundleOptions, _bundle, isWrite) {
self._ongenerate();
if (isWrite) {
self._onwrite(bundleOptions);
}
else {
self._ongenerate();
}
},
_ongenerate() {
context.debug(() => `generating target ${generateRound + 1}`);

File diff suppressed because one or more lines are too long

View File

@ -26592,12 +26592,10 @@ const typescript = (options) => {
return undefined;
},
generateBundle(bundleOptions, _bundle, isWrite) {
self._ongenerate();
if (isWrite) {
self._onwrite(bundleOptions);
}
else {
self._ongenerate();
}
},
_ongenerate() {
context.debug(() => `generating target ${generateRound + 1}`);

File diff suppressed because one or more lines are too long

View File

@ -273,14 +273,11 @@ const typescript: PluginImpl<Partial<IOptions>> = (options) =>
generateBundle(bundleOptions: OutputOptions, _bundle: any, isWrite: boolean): void
{
self._ongenerate();
if (isWrite)
{
self._onwrite(bundleOptions);
}
else
{
self._ongenerate();
}
},
_ongenerate(): void