Compare commits

...

6 Commits

Author SHA1 Message Date
dcf5c6ab22 1.0.15 2018-07-01 12:10:41 +02:00
00480a27e0 update file structure any provisioning of tscache 2018-07-01 12:10:36 +02:00
353c1f6dbd 1.0.14 2018-07-01 12:00:43 +02:00
e540ac8327 now skipping ignore completely 2018-07-01 12:00:40 +02:00
ef1bc5c93a 1.0.13 2018-07-01 11:58:36 +02:00
a76aaa45d2 update ignore path pattern for ts_node 2018-07-01 11:58:33 +02:00
4 changed files with 4 additions and 9 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsrun",
"version": "1.0.12",
"version": "1.0.15",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsrun",
"version": "1.0.12",
"version": "1.0.15",
"description": "run typescript programs efficiently",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
@ -13,7 +13,7 @@
"test": "(npmts --notest && node ./cli.js test/test.ts)",
"format": "(gitzone format)",
"build": "echo \"Not needed for now\"",
"postinstall": "ts-node --ignore '' --compilerOptions '{\"lib\": [\"ES2015\"]}' scripts/postinstall.ts"
"postinstall": "ts-node --skip-ignore true --compilerOptions '{\"lib\": [\"ES2015\"]}' scripts/postinstall.ts"
},
"devDependencies": {
"@types/node": "^10.3.0"

View File

@ -4,12 +4,7 @@ import * as path from 'path';
const run = async () => {
const tsCacheDir = path.join(__dirname, '../tscache');
const tsCacheFiles: string[] = await smartfile.fs.listFolders(tsCacheDir) as any;
for(const dir of tsCacheFiles) {
console.log(`Removing cache directory ${dir}`);
let dirToRemove = path.join(tsCacheDir, dir);
await smartfile.fs.removeSync(dirToRemove);
}
await smartfile.fs.ensureEmptyDir(tsCacheDir);
}
run()

View File