@robotical/martyblocks 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib.min.js +1 -1
- package/martyBlocksCliProfile +7 -0
- package/package.json +1 -1
package/martyBlocksCliProfile
CHANGED
|
@@ -48,6 +48,13 @@ restoreScratch() {
|
|
|
48
48
|
cd $gui_original && git restore . && git clean -fd
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
# Step 1d: Remove package-lock.json and node_modules from scratch repos
|
|
52
|
+
removeNodeModules() {
|
|
53
|
+
cd $blocks_original && rm -rf package-lock.json node_modules
|
|
54
|
+
cd $vm_original && rm -rf package-lock.json node_modules
|
|
55
|
+
cd $gui_original && rm -rf package-lock.json node_modules
|
|
56
|
+
}
|
|
57
|
+
|
|
51
58
|
# Step 2: Install scratch
|
|
52
59
|
installScratch() {
|
|
53
60
|
cd $blocks_original && npm install
|