Skip to content

Commit 0ed6487

Browse files
authored
chore(ci): taskfile and gitignore (#4)
* fix: correct indentation in Taskfile.yaml for scratch tasks * feat: add Arduino_Modulino to .gitignore
1 parent e9b9776 commit 0ed6487

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
scratch-editor
1+
scratch-editor
2+
Arduino_Modulino

Taskfile.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,20 @@ tasks:
77
- git clone --depth 1 --branch {{ .SCRATCH_EDITOR_VERSION }} https://github.com/scratchfoundation/scratch-editor.git
88

99
scratch:install:
10-
dir: scratch-editor
11-
cmds:
12-
- npm install
13-
- npm run build --workspace @scratch/scratch-svg-renderer
14-
- npm run build --workspace @scratch/scratch-vm
15-
- npm run build:dev --workspace @scratch/scratch-gui
10+
dir: scratch-editor
11+
cmds:
12+
- npm install
13+
- npm run build --workspace @scratch/scratch-svg-renderer
14+
- npm run build --workspace @scratch/scratch-vm
15+
- npm run build:dev --workspace @scratch/scratch-gui
1616

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

2020
scratch:start:
21-
dir: scratch-editor
22-
- npm start --workspace @scratch/scratch-gui
21+
dir: scratch-editor
22+
cmds:
23+
- npm start --workspace @scratch/scratch-gui
2324

2425
scratch:clean:
2526
- rm -rf scratch-editor

0 commit comments

Comments
 (0)