File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 4
4
"description" : " GraphicaL User Interface for creating and running Scratch 3.0 projects" ,
5
5
"main" : " ./dist/scratch-gui.js" ,
6
6
"scripts" : {
7
- "build" : " npm run clean && webpack --progress -- colors --bail" ,
7
+ "build" : " npm run clean && webpack --colors --bail" ,
8
8
"clean" : " rimraf ./build && mkdirp build && rimraf ./dist && mkdirp dist" ,
9
9
"deploy" : " touch build/.nojekyll && gh-pages -t -d build -m \" Build for $(git log --pretty=format:%H -n1) [skip ci]\" " ,
10
10
"prune" : " ./prune-gh-pages.sh" ,
16
16
"test:lint" : " eslint . --ext .js,.jsx" ,
17
17
"test:unit" : " jest test[\\\\ /]unit" ,
18
18
"test:smoke" : " jest --runInBand test[\\\\ /]smoke" ,
19
- "watch" : " webpack --progress -- colors --watch"
19
+ "watch" : " webpack --colors --watch"
20
20
},
21
21
"author" : " Massachusetts Institute of Technology" ,
22
22
"license" : " BSD-3-Clause" ,
Original file line number Diff line number Diff line change @@ -95,6 +95,10 @@ const base = {
95
95
plugins : [ ]
96
96
} ;
97
97
98
+ if ( ! process . env . CI ) {
99
+ base . plugins . push ( new webpack . ProgressPlugin ( ) ) ;
100
+ }
101
+
98
102
module . exports = [
99
103
// to run editor examples
100
104
defaultsDeep ( { } , base , {
You can’t perform that action at this time.
0 commit comments