From 1c375d8d55ffd54f7a7026fc0b0ead5bbb746019 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Fri, 15 Jan 2021 13:50:31 +0100 Subject: [PATCH] remove temporary fix --- ci.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ci.js b/ci.js index 6afbad3..8bbd4ba 100644 --- a/ci.js +++ b/ci.js @@ -17,14 +17,6 @@ const child_process = require ('child_process'); const pkg = JSON.parse (fs.readFileSync ('package.json', 'utf-8')); -/* ======== FIX FOR JASMINE-TS ================== */ -if (fs.existsSync ('node_modules/jasmine-ts/lib/index.js')) { - const jts = fs.readFileSync ('node_modules/jasmine-ts/lib/index.js', 'utf-8'); - const ejts = jts.replace ('"ts-node/dist"', '"ts-node"'); - fs.writeFileSync('node_modules/jasmine-ts/lib/index.js', ejts); -} -/* ============================================== */ - child_process.execSync ('yarn lint', { stdio: 'inherit' }); child_process.execSync ('yarn test', { stdio: 'inherit' }); child_process.execSync ('yarn compile', { stdio: 'inherit' });