Skip to content

Commit e00f85a

Browse files
committed
Exclude files from extension (#3495)
1 parent dcb1155 commit e00f85a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.vscodeignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ CONTRIBUTING - LANGUAGE SERVER.md
1717
coverconfig.json
1818
functionalTestRequirements.txt
1919
gulpfile.js
20+
package.datascience-ui.dependencies.json
2021
package-lock.json
2122
packageExtension.cmd
2223
pvsc-dev-ext.py
2324
PYTHON_INTERACTIVE_TROUBLESHOOTING.md
24-
tsconfig.json
25+
tsconfig*.json
2526
tsfmt.json
2627
tslint.json
2728
typings.json
@@ -47,6 +48,7 @@ images/**/*.gif
4748
images/**/*.png
4849
news/**
4950
obj/**
51+
out/client/**/*analyzer.html
5052
out/coverconfig.json
5153
out/pythonFiles/**
5254
out/src/**

build/webpack/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function getDefaultPlugins(name) {
3333
if (!constants_1.isCI) {
3434
plugins.push(new webpack_bundle_analyzer_1.BundleAnalyzerPlugin({
3535
analyzerMode: 'static',
36-
reportFilename: `${name}.html`
36+
reportFilename: `${name}.analyzer.html`
3737
}));
3838
}
3939
return plugins;

build/webpack/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function getDefaultPlugins(name: 'extension' | 'debugger' | 'dependencies
3737
plugins.push(
3838
new BundleAnalyzerPlugin({
3939
analyzerMode: 'static',
40-
reportFilename: `${name}.html`
40+
reportFilename: `${name}.analyzer.html`
4141
})
4242
);
4343
}

0 commit comments

Comments
 (0)