瀏覽代碼

removed npm install from the build run

Jason Crist 4 年之前
父節點
當前提交
c74c3d9cd0
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      blank-canvas-blocks/rebuild-child-themes.sh

+ 0 - 1
blank-canvas-blocks/rebuild-child-themes.sh

@@ -5,7 +5,6 @@ declare -a ChildThemes=( "mayland-blocks" "seedlet-blocks" "quadrat" )
 for child in ${ChildThemes[@]}; do
 	cd '../'${child}
 	echo 'Rebulding '${child}
-	npm install
 	npm run build
 done