@robotical/martyblocks 1.4.45 → 1.4.47

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.
@@ -51,70 +51,46 @@ jobs:
51
51
  git clone -b develop https://github.com/llk/scratch-vm.git ${{ env.vm_original }}
52
52
  git clone -b develop https://github.com/llk/scratch-gui.git ${{ env.gui_original }}
53
53
 
54
- - name: Checkout appropriate commit
55
- run: |
56
54
  cd ${{ env.blocks_original }} && git reset --hard f9107bf5d0479d632658f2b203995f5ae6d75363
57
55
  cd ${{ env.vm_original }} && git reset --hard 3b36a8e3ea7f3caa5b4bf4ae7b4f821a986a1378
58
56
  cd ${{ env.gui_original }} && git reset --hard 738c86bb58e336711280aec33c510d7aef79408e
59
57
 
60
- - name: Install scratch
61
- run: |
62
58
  cd ${{ env.blocks_original }} && npm install
63
59
  cd ${{ env.vm_original }} && npm install
64
60
  cd ${{ env.gui_original }} && npm install
65
61
 
66
- - name: Install marty blocks library
67
- run: |
68
62
  cd ${{ env.mblib }}
69
63
  npm install
70
64
 
71
- - name: setting production environments
72
- run: |
73
65
  cd ${{ env.mblib }}
74
66
  npx node set-production.js
75
67
 
76
- - name: Link repositories
77
- run: |
78
68
  cd ${{ env.mblib }} && npm link
79
69
  cd ${{ env.blocks_original }} && npm link && npm link marty-blocks-lib
80
70
  cd ${{ env.vm_original }} && npm link && npm link marty-blocks-lib scratch-blocks
81
71
  cd ${{ env.gui_original }} && npm link marty-blocks-lib scratch-blocks scratch-vm
82
72
 
83
- - name: check if scracth-blocks linking worked
84
- run: |
85
73
  cd ${{ env.blocks_original }}
86
74
  npm list || true
87
75
 
88
- - name: check if scratch-vm linking worked
89
- run: |
90
76
  cd ${{ env.vm_original }}
91
77
  npm list || true
92
- - name: check if gui linking worked
93
- run: |
78
+
94
79
  cd ${{ env.gui_original }}
95
80
  npm list || true
96
81
 
97
- - name: Copy replacements
98
- run: |
99
82
  cp -r ${{ env.REPLACEMENTS }}/* ${{ env.MBHome }}
100
83
 
101
- - name: Build Blocks
102
- run: |
84
+
103
85
  cd ${{ env.blocks_original }}
104
86
  npm run prepublish
105
87
 
106
- - name: Build VM
107
- run: |
108
88
  cd ${{ env.vm_original }}
109
89
  npm run build
110
90
 
111
- - name: Build Scratch
112
- run: |
113
91
  cd ${{ env.gui_original }}
114
92
  BUILD_MODE=dist npm run build
115
93
 
116
- - name: Copy dist files
117
- run: |
118
94
  mkdir -p ${{ env.MBHome }}/dist
119
95
  cp -r ${{ env.gui_original }}/build/* ${{ env.MBHome }}/dist
120
96
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robotical/martyblocks",
3
- "version": "1.4.45",
3
+ "version": "1.4.47",
4
4
  "description": "MartyBlocks based on Scratch for Marty the Robot by Robotical",
5
5
  "main": "README.md",
6
6
  "scripts": {