File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -142,7 +142,8 @@ function makeDistAll() {
142142
143143function makeJSDist ( ) {
144144 return src ( [ 'src/**/*.js' , '!src/**/unittest-files/**/*' , "!src/thirdparty/prettier/**/*" ,
145- "!src/thirdparty/no-minify/**/*" , "!src/LiveDevelopment/BrowserScripts/RemoteFunctions.js" ] )
145+ "!src/thirdparty/no-minify/**/*" , "!src/LiveDevelopment/BrowserScripts/RemoteFunctions.js" ,
146+ "!src/extensionsIntegrated/phoenix-pro/onboarding/**/*" ] )
146147 . pipe ( minify ( {
147148 ext :{
148149 min :'.js'
@@ -174,7 +175,8 @@ function makeNonMinifyDist() {
174175 // we dont minify remote functions as its in live preview context and the prod minify is stripping variables
175176 // used by plugins in live preview. so we dont minify this for now.
176177 return src ( [ "src/thirdparty/no-minify/**/*" ,
177- "src/LiveDevelopment/BrowserScripts/RemoteFunctions.js" ] , { base : 'src' } )
178+ "src/LiveDevelopment/BrowserScripts/RemoteFunctions.js" ,
179+ "src/extensionsIntegrated/phoenix-pro/onboarding/**/*" ] , { base : 'src' } )
178180 . pipe ( dest ( 'dist' ) ) ;
179181}
180182
You can’t perform that action at this time.
0 commit comments