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
10 changes: 7 additions & 3 deletions .github/path-filters.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# This file is generated by scripts/update-gha-workflows.ts
#
# To regenerate: npm run refresh-gh-workflow

# The `&global` anchor defines a set of common paths to include by reference in the other filters.
global: &global
- ".github/path-filters.yml"
Expand All @@ -14,9 +18,6 @@ any-workspace:
task-herder:
- *global
- "packages/task-herder/**"
scratch-media-lib-scripts:
- *global
- "packages/scratch-media-lib-scripts/**"
scratch-svg-renderer:
- *global
- "packages/scratch-svg-renderer/**"
Expand All @@ -35,3 +36,6 @@ scratch-gui:
- "packages/scratch-render/**"
- "packages/scratch-svg-renderer/**"
- "packages/scratch-vm/**"
scratch-media-lib-scripts:
- *global
- "packages/scratch-media-lib-scripts/**"
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# build-monorepo.sh
/monorepo.out
/monorepo.tmp
/monorepo.cache
# add-repo.sh
/add-repo.tmp
/add-repo.errors.log

# Logs
logs
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@
],
"scripts": {
"build": "cross-env NODE_ENV=production npm run --workspaces build",
"build-monorepo": "cross-env-shell ./scripts/build-monorepo.sh",
"clean": "npm run --workspaces clean",
"prepare": "husky install",
"refresh-gh-workflow": "ts-node scripts/build-gha-workflows.ts",
"refresh-gh-workflow": "ts-node scripts/update-gha-workflows.ts",
"start": "npm --workspace @scratch/scratch-gui start",
"test": "npm test --workspaces",
"update-legal": "npm --workspaces exec -c 'rm -f ./{LICENSE,TRADEMARK} && cp -f ../../{LICENSE,TRADEMARK} .'",
Expand Down
Loading
Loading