Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
scratch-editor
scratch-editor
Arduino_Modulino
17 changes: 9 additions & 8 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@ tasks:
- git clone --depth 1 --branch {{ .SCRATCH_EDITOR_VERSION }} https://github.com/scratchfoundation/scratch-editor.git

scratch:install:
dir: scratch-editor
cmds:
- npm install
- npm run build --workspace @scratch/scratch-svg-renderer
- npm run build --workspace @scratch/scratch-vm
- npm run build:dev --workspace @scratch/scratch-gui
dir: scratch-editor
cmds:
- npm install
- npm run build --workspace @scratch/scratch-svg-renderer
- npm run build --workspace @scratch/scratch-vm
- npm run build:dev --workspace @scratch/scratch-gui

scratch:patch:
- cd scratch-editor/packages/scratch-gui && node ../../../scratch-arduino-extensions/scripts/patch-gui.js

scratch:start:
dir: scratch-editor
- npm start --workspace @scratch/scratch-gui
dir: scratch-editor
cmds:
- npm start --workspace @scratch/scratch-gui

scratch:clean:
- rm -rf scratch-editor
Expand Down