Skip to content

Commit 6bdfac5

Browse files
authored
chore: set up blockly to be a monorepo (#9575)
* chore(monorepo): move all blockly files to packages/blockly * chore(monorepo): add root package.json and update gitignores * chore(monorepo): update scripts and github workflows * chore(monorepo): only try the native release for closure compiler chore: add debug info to build script chore: update google-closure-compiler chore: remove debug info
1 parent c2cb695 commit 6bdfac5

File tree

1,004 files changed

+12949
-3140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,004 files changed

+12949
-3140
lines changed

.github/workflows/appengine_deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- name: Prepare demo files
2121
# Install all dependencies, then copy all the files needed for demos.
2222
run: |
23+
cd packages/blockly
2324
npm install
2425
npm run prepareDemos
2526

.github/workflows/browser_test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
# See supported Node.js release schedule at
2626
# https://nodejs.org/en/about/releases/
2727

28+
defaults:
29+
run:
30+
working-directory: ./packages/blockly
31+
2832
steps:
2933
- uses: actions/checkout@v5
3034
with:

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
- name: Linux Test Setup
4444
if: runner.os == 'Linux'
4545
run: source ./tests/scripts/setup_linux_env.sh
46+
working-directory: ./packages/blockly
4647

4748
- name: Run
4849
run: npm run test

.github/workflows/keyboard_plugin_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ jobs:
5252
5353
- name: Link latest core main with plugin
5454
run: |
55-
cd core-blockly
55+
cd core-blockly/packages/blockly
5656
npm run package
5757
cd dist
5858
npm link
59-
cd ../../blockly-keyboard-experimentation
59+
cd ../../../../blockly-keyboard-experimentation
6060
npm link blockly
6161
cd ..
6262

.github/workflows/tag_module_cleanup.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,3 @@ build-debug.log
99
*.komodoproject
1010
/nbproject/private/
1111
tsdoc-metadata.json
12-
13-
tests/compile/main_compressed.js
14-
tests/compile/main_compressed.js.map
15-
tests/compile/*compiler*.jar
16-
tests/screenshot/outputs/*
17-
local_build/*compiler*.jar
18-
local_build/local_*_compressed.js
19-
chromedriver
20-
build/
21-
dist/
22-
temp/

0 commit comments

Comments
 (0)