File tree 3 files changed +8
-3
lines changed
arduino-ide-extension/src/browser/theia/core
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,8 @@ export class DefaultWindowService
14
14
async isFirstWindow ( ) : Promise < boolean > {
15
15
return true ;
16
16
}
17
- }
17
+
18
+ close ( ) {
19
+ console . log ( 'close' ) ;
20
+ }
21
+ }
Original file line number Diff line number Diff line change 25
25
"@theia/cli" : " 1.41.0"
26
26
},
27
27
"scripts" : {
28
+ "build:dev" : " theia build --config webpack.config.js --mode development" ,
28
29
"prepare" : " theia build --mode development" ,
29
30
"start" : " theia start --plugins=local-dir:../plugins" ,
30
31
"watch" : " theia build --watch --mode development"
Original file line number Diff line number Diff line change 5
5
// @ts -check
6
6
const config = require ( './gen-webpack.config.js' ) ;
7
7
8
- config . resolve . fallback [ 'http' ] = false ;
9
- config . resolve . fallback [ 'fs' ] = false ;
8
+ config [ 0 ] . resolve . fallback [ 'http' ] = false ;
9
+ config [ 0 ] . resolve . fallback [ 'fs' ] = false ;
10
10
11
11
/**
12
12
* Expose bundled modules on window.theia.moduleName namespace, e.g.
You can’t perform that action at this time.
0 commit comments