Skip to content

Commit 2b911dc

Browse files
fix: remove obsolete command and set script to fail on error
1 parent a3ea6b7 commit 2b911dc

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

packages/scratch-render/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"homepage": "https://github.com/scratchfoundation/scratch-render#readme",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/scratchfoundation/scratch-editor.git",
11-
"sha": "e593d13de19afe7250aacb252a93f8703f52a7a6"
10+
"url": "https://github.com/scratchfoundation/scratch-editor.git"
1211
},
1312
"exports": {
1413
"webpack": "./src/index.js",
@@ -25,7 +24,6 @@
2524
"start": "webpack-dev-server",
2625
"tap": "tap test/unit test/integration",
2726
"test": "npm run lint && npm run docs && npm run build && npm run tap",
28-
"version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\"",
2927
"watch": "webpack --progress --watch --watch-poll"
3028
},
3129
"tap": {

packages/scratch-vm/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"homepage": "https://github.com/scratchfoundation/scratch-vm#readme",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/scratchfoundation/scratch-editor.git",
11-
"sha": "c916f9ce07065d4061177fdd9f3cca511dbc1d85"
10+
"url": "https://github.com/scratchfoundation/scratch-editor.git"
1211
},
1312
"main": "./dist/node/scratch-vm.js",
1413
"browser": "./dist/web/scratch-vm.js",
@@ -31,8 +30,7 @@
3130
"tap:unit": "tap ./test/unit/*.js",
3231
"tap:integration": "tap ./test/integration/*.js",
3332
"test": "npm run lint && npm run tap",
34-
"watch": "webpack --progress --watch",
35-
"version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\""
33+
"watch": "webpack --progress --watch"
3634
},
3735
"browserslist": [
3836
"Chrome >= 63",

scripts/update-dependencies-with-tag-versions.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
set -e
4+
35
ALL_PACKAGES="
46
scratch-gui \
57
scratch-render \

0 commit comments

Comments
 (0)