Skip to content

Commit 1170262

Browse files
authored
chore: remove package.json skip steps (#2221)
<!-- ELLIPSIS_HIDDEN --> > [!IMPORTANT] > Remove unused `dev.skip` script entries from `package.json` files in `nodejs`, `web`, and `cli` directories. > > - **Scripts Cleanup**: > - Removed `dev.skip` from `nodejs/package.json`. > - Removed `dev.skip` and `dev.skip2` from `web/package.json`. > - Removed `dev.skip` from `cli/package.json`. > > <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=BoundaryML%2Fbaml&utm_source=github&utm_medium=referral)<sup> for 24b8a8c. You can [customize](https://app.ellipsis.dev/BoundaryML/settings/summaries) this summary. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN -->
1 parent 0ab3ccc commit 1170262

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

engine/baml-schema-wasm/nodejs/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"release": "pnpm run pack --release",
1111
"pack": "wasm-pack build ../ --target nodejs --out-dir ./nodejs/dist",
1212
"typecheck": "pnpm run pack --dev",
13-
"dev.skip": "cargo watch -C .. -w ./src -s 'cargo build --manifest-path ../Cargo.toml && pnpm run pack --dev'",
1413
"dev": "pnpm run build"
1514
},
1615
"repository": {

engine/baml-schema-wasm/web/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
"comment": "don't use 'wasm pack --dev' below or it will be too big of a bundle and playground will be slow to load.",
99
"build": "pnpm run release",
1010
"release": "pnpm run pack --release",
11-
"pack": "wasm-pack build ../ --target bundler --out-dir ./web/dist",
12-
"dev.skip": "cargo watch -C ../ -w ./src -s 'cargo build --package baml-schema-build && pnpm run pack --dev'",
13-
"dev.skip2": "pnpm run build"
11+
"pack": "wasm-pack build ../ --target bundler --out-dir ./web/dist"
1412
},
1513
"exports": {
1614
".": {

engine/cli/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
},
99
"scripts": {
1010
"dev": "pnpm build && pnpm run copy:debug",
11-
"dev.skip": "cargo watch -x 'build --bin baml-cli' -s 'pnpm run copy:debug'",
1211
"clean": "git clean -xdf .turbo node_modules target",
1312
"copy:debug": "mkdir -p dist && cp ../target/debug/baml-cli dist/baml-cli",
1413
"copy:release": "mkdir -p dist && cp ../target/release/baml-cli dist/baml-cli",

0 commit comments

Comments
 (0)