This commit is contained in:
Don Jayamanne 2018-11-28 12:43:20 -08:00 коммит произвёл GitHub
Родитель 858c4c6118
Коммит 3d5ae38f75
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 5 добавлений и 3 удалений

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

@ -17,11 +17,12 @@ CONTRIBUTING - LANGUAGE SERVER.md
coverconfig.json
functionalTestRequirements.txt
gulpfile.js
package.datascience-ui.dependencies.json
package-lock.json
packageExtension.cmd
pvsc-dev-ext.py
PYTHON_INTERACTIVE_TROUBLESHOOTING.md
tsconfig.json
tsconfig*.json
tsfmt.json
tslint.json
typings.json
@ -47,6 +48,7 @@ images/**/*.gif
images/**/*.png
news/**
obj/**
out/client/**/*analyzer.html
out/coverconfig.json
out/pythonFiles/**
out/src/**

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

@ -33,7 +33,7 @@ function getDefaultPlugins(name) {
if (!constants_1.isCI) {
plugins.push(new webpack_bundle_analyzer_1.BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: `${name}.html`
reportFilename: `${name}.analyzer.html`
}));
}
return plugins;

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

@ -37,7 +37,7 @@ export function getDefaultPlugins(name: 'extension' | 'debugger' | 'dependencies
plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: `${name}.html`
reportFilename: `${name}.analyzer.html`
})
);
}