Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit aace83c

Browse files
author
Lajos Gallay
committed
fix(fetch-types): typescript compile and nyc test folder path fix
1 parent cac28bf commit aace83c

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

dist/sn-fetch-types.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sn-fetch-types.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/sn-fetch-types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export async function DoFetchTypes(initializer: Initializer = Initializer.Curren
2323
zip.extractAllTo(initializer.Stage.TempFolderPath + Path.sep + 'src', true);
2424
console.log('Files extracted, running Build...');
2525

26-
await initializer.Stage.CallGulpRunAsync('tsc', this.TempFolderPath);
27-
await initializer.Stage.CallGulpRunAsync('nyc mocha -p tsconfig.json dist/test/index.js', this.TempFolderPath);
26+
await initializer.Stage.CallGulpRunAsync('tsc', initializer.Stage.TempFolderPath);
27+
await initializer.Stage.CallGulpRunAsync('nyc mocha -p tsconfig.json dist/test/index.js', initializer.Stage.TempFolderPath);
2828
await initializer.Stage.UpdateModuleAsync();
2929
await initializer.Stage.Cleanup();
3030

0 commit comments

Comments
 (0)