@@ -11,13 +11,13 @@ module.exports.buildPackage = async() => {
1111module . exports . prepareDirectory = async ( devextremeVersion , themeBuilderVersion , workDirectory ) => {
1212 await runCommand ( 'npm' , [ 'init' , '--yes' ] , { cwd : workDirectory } ) ;
1313 if ( devextremeVersion ) {
14- await runCommand ( 'npm' , [ 'install' , `devextreme@${ devextremeVersion } ` , '--save-exact' ] , { cwd : workDirectory } ) ;
14+ await runCommand ( 'npm' , [ 'install' , `devextreme@${ devextremeVersion } ` , '--save-exact' , '--ignore-scripts' ] , { cwd : workDirectory } ) ;
1515 }
1616 if ( themeBuilderVersion ) {
17- await runCommand ( 'npm' , [ 'install' , `devextreme-themebuilder@${ themeBuilderVersion } ` , '--save-exact' ] , { cwd : workDirectory } ) ;
17+ await runCommand ( 'npm' , [ 'install' , `devextreme-themebuilder@${ themeBuilderVersion } ` , '--save-exact' , '--ignore-scripts' ] , { cwd : workDirectory } ) ;
1818 }
1919 // we need to install cli as tgz (regular install for folder make symlink and require works in wrong way)
20- await runCommand ( 'npm' , [ 'install' , `../../../devextreme-cli-${ cliVersion } .tgz` , '--save-exact' ] , { cwd : workDirectory } ) ;
20+ await runCommand ( 'npm' , [ 'install' , `../../../devextreme-cli-${ cliVersion } .tgz` , '--save-exact' , '--ignore-scripts' ] , { cwd : workDirectory } ) ;
2121} ;
2222
2323module . exports . parseDetectedVersion = ( output ) => {
0 commit comments