Remove more vestiges of old webpack build

This commit is contained in:
Rob Lourens 2017-11-13 11:46:58 -08:00
Родитель 1103a3b840
Коммит cfa8ab12f3
5 изменённых файлов: 8 добавлений и 27 удалений

Просмотреть файл

@ -1,9 +0,0 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"sourceMap": true,
"outDir": "../out",
"noImplicitThis": true
}
}

Просмотреть файл

@ -62,15 +62,9 @@
"onCommand:extension.chrome-debug.toggleSkippingFile"
],
"scripts": {
"build": "concurrently \"npm run build:debugadapter\" \"npm run build:test\" \"npm run build:outOfBundle\"",
"build:debugadapter": "gulp build",
"build:test": "tsc -p test/tsconfig.json",
"build:outOfBundle": "tsc -p outOfBundle/tsconfig.json",
"watch": "concurrently \"npm run watch:debugadapter\" \"npm run watch:test\" \"npm run watch:outOfBundle\"",
"watch:debugadapter": "gulp watch",
"watch:test": "tsc -p test/tsconfig.json -w",
"watch:outOfBundle": "tsc -p outOfBundle/tsconfig.json -w",
"start": "node out/bundle.js --server=4712",
"build": "gulp build",
"watch": "gulp watch",
"start": "node out/src/chromeDebug.js --server=4712",
"test": "mocha --timeout 20000 -s 2000 -u tdd --colors \"./out/test/*.test.js\"",
"intTest": "mocha --timeout 20000 -s 3500 -u tdd --colors --reporter node_modules/vscode-chrome-debug-core-testsupport/out/loggingReporter.js ./out/test/int/*.test.js",
"lint": "tslint -t verbose \"src/**/*.ts\"",

Просмотреть файл

@ -299,12 +299,7 @@ export function resolveWebRootPattern(webRoot: string, sourceMapPathOverrides: I
}
function getChromeSpawnHelperPath(): string {
if (path.basename(__dirname) === 'src') {
// For tests
return path.join(__dirname, '../chromeSpawnHelper.js');
} else {
return path.join(__dirname, 'chromeSpawnHelper.js');
}
return path.join(__dirname, '../chromeSpawnHelper.js');
}
function findExecutable(program: string): string | undefined {

Просмотреть файл

Просмотреть файл

@ -8,8 +8,9 @@
"outDir": "out",
"noImplicitThis": true
},
"include": [
"src/**/*.ts",
"node_modules/@types/**/*.ts"
"exclude": [
"node_modules/",
"testapp/",
"testdata/"
]
}