Skip to content

Commit 92a8a01

Browse files
committed
fix(deps): use Blockly 12 beta instead of RC
1 parent 638ee0f commit 92a8a01

7 files changed

+137
-204
lines changed

.github/workflows/deploy.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
node-version-file: '.nvmrc'
2222
# TODO: tests
2323
- name: Install Node Dependencies
24-
run: npm ci
24+
# The --legacy-peer-deps flag is a TEMPORARY fix during the Blockly 12 beta.
25+
# It should be removed once the @blockly/* packages support Blockly 12.
26+
run: npm ci --legacy-peer-deps
2527
- name: Build
2628
run: npm run build
2729
# - name: Deploy playground to GitHub Pages

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Temporary until Blockly v12 release
2-
/blockly-rc/
3-
41
# OSX
52
.DS_Store
63

.npmignore

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# Temporary until Blockly v12 release
2-
/blockly-rc/
3-
/temp-use-blockly-v12-rc.sh
4-
51
# Development files
62
/.circleci
73
.eslintrc

0 commit comments

Comments
 (0)