Skip to content

Commit

Permalink
Cleanup NPM scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
JumpLink committed Mar 2, 2024
1 parent b7d7d2b commit d1e2973
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"build:generator-base": "yarn workspace @ts-for-gir/generator-base run build",
"build:generator-typescript": "yarn workspace @ts-for-gir/generator-typescript run build",
"build:generator-html-doc": "yarn workspace @ts-for-gir/generator-html-doc run build",
"build:examples": "yarn workspaces foreach -v --all --exclude '@ts-for-gir/*' --parallel run build",
"build:examples": "yarn workspaces foreach -v --all --include '@ts-for-gir-example/*' --parallel run build",
"build:all": "yarn build && yarn build:examples",
"start:cli-examples": "yarn workspace ts-for-gir-glib-2-spawn-command-example run start && yarn workspace ts-for-gir-gio-2-cat-promisify-packages run start",
"build:types:packages": "yarn ts-for-gir generate --configName='.ts-for-gir.packages-all.rc.js' && yarn install",
Expand All @@ -43,9 +43,9 @@
"validate:types:packages": "tsc --project tsconfig.json",
"clear": "yarn clear:build && yarn clear:types",
"clear:build": "yarn workspaces foreach -v --include '@ts-for-gir/*' run clear:build",
"clear:types": "rimraf ./@types",
"clear:types": "yarn run clear:types:local",
"clear:types:local": "rimraf ./@types",
"clear:examples": "yarn workspaces foreach -v --all --exclude @ts-for-gir/*,@gi.ts/* --parallel run clear",
"clear:examples": "yarn workspaces foreach -v --all --include @@ts-for-gir-example/* --parallel run clear",
"clear:all": "yarn clear && yarn clear:examples",
"watch": "concurrently 'yarn:watch:*'",
"watch:cli": "yarn workspace @ts-for-gir/cli run watch",
Expand Down

0 comments on commit d1e2973

Please sign in to comment.