Exclude files from extension (#3495)
This commit is contained in:
Родитель
858c4c6118
Коммит
3d5ae38f75
|
@ -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`
|
||||
})
|
||||
);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче