@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.
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robotical/martyblocks",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "MartyBlocks based on Scratch for Marty the Robot by Robotical",
5
5
  "main": "README.md",
6
6
  "scripts": {