Skip to content

Commit

Permalink
fix(plugin) fix missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
cslecours committed Sep 26, 2019
1 parent 62364b8 commit f24359e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.d.ts.map

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

1 change: 1 addition & 0 deletions dist/rollup-plugin-typescript2.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -27276,6 +27276,7 @@ const typescript = (options) => {
watchMode = process.env.ROLLUP_WATCH === "true";
({ parsedTsConfig: parsedConfig, fileName: tsConfigPath } = parseTsConfig(context, pluginOptions));
if (generateRound === 0) {
parsedConfig.fileNames.forEach(fileName => { allImportedFiles.add(fileName); });
context.info(`typescript version: ${tsModule.version}`);
context.info(`tslib version: ${tslibVersion}`);
if (this.meta)
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.cjs.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/rollup-plugin-typescript2.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -27270,6 +27270,7 @@ const typescript = (options) => {
watchMode = process.env.ROLLUP_WATCH === "true";
({ parsedTsConfig: parsedConfig, fileName: tsConfigPath } = parseTsConfig(context, pluginOptions));
if (generateRound === 0) {
parsedConfig.fileNames.forEach(fileName => { allImportedFiles.add(fileName); });
context.info(`typescript version: ${tsModule.version}`);
context.info(`tslib version: ${tslibVersion}`);
if (this.meta)
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.es.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ const typescript: PluginImpl<Partial<IOptions>> = (options) =>

if (generateRound === 0)
{
parsedConfig.fileNames.forEach(fileName => { allImportedFiles.add(fileName) })

context.info(`typescript version: ${tsModule.version}`);
context.info(`tslib version: ${tslibVersion}`);
if (this.meta)
Expand Down

0 comments on commit f24359e

Please sign in to comment.