File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 44 *--------------------------------------------------------------------------------------------*/
55
66import { gulp_webpack } from '@microsoft/vscode-azext-dev' ;
7- import * as child_process from 'child_process' ;
87import * as fse from 'fs-extra' ;
98import * as gulp from 'gulp' ;
109import * as path from 'path' ;
@@ -28,10 +27,11 @@ async function cleanReadme(): Promise<void> {
2827}
2928
3029async function installSwcCore ( ) : Promise < void > {
31- // Our pipelies run on Linux so we need to install the correct @swc /core package for te pipelines to pass.
32- if ( process . platform === 'linux' ) {
33- child_process . execSync ( 'npm install @swc/core-linux-x64-gnu --save-dev' )
34- }
30+ // NOTE: Commented out automatic installation per user request in PR comment
31+ // Original comment: "Our pipelies run on Linux so we need to install the correct @swc/core package for te pipelines to pass."
32+ // if (process.platform === 'linux') {
33+ // child_process.execSync('npm install @swc/core-linux-x64-gnu --save-dev')
34+ // }
3535}
3636
3737exports [ 'webpack-dev' ] = gulp . series ( prepareForWebpack , ( ) => gulp_webpack ( 'development' ) ) ;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ let perfStats = {
1616
1717Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
1818
19- const extension = require ( './out/src/ extension' ) ;
19+ const extension = require ( './dist/ extension.bundle ' ) ;
2020
2121async function activate ( ctx ) {
2222 return await extension . activate ( ctx , perfStats , true /*ignoreBundle*/ ) ;
Original file line number Diff line number Diff line change 818818 "@microsoft/eslint-config-azuretools" : " ^0.2.2" ,
819819 "@microsoft/vscode-azext-dev" : " ^2.1.0" ,
820820 "@swc/core" : " ^1.7.36" ,
821- "@swc/core-linux-x64-gnu" : " ^1.13.4" ,
822821 "@types/deep-eql" : " ^4.0.0" ,
823822 "@types/fs-extra" : " ^8.1.1" ,
824823 "@types/gulp" : " ^4.0.6" ,
You can’t perform that action at this time.
0 commit comments