Skip to content

Commit

Permalink
Merge branch 'cslecours-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Sep 26, 2019
2 parents 62364b8 + 63a7ac2 commit 29d0d22
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
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
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
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 29d0d22

Please sign in to comment.