feat: new bun_build and bun_compile, extend bun_install
This commit is contained in:
7
tests/script_test/workspace_run/package.json
Normal file
7
tests/script_test/workspace_run/package.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "workspace-run-root",
|
||||
"private": true,
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "pkg-a",
|
||||
"scripts": {
|
||||
"say": "bun ./say.ts"
|
||||
}
|
||||
}
|
||||
1
tests/script_test/workspace_run/packages/pkg-a/say.ts
Normal file
1
tests/script_test/workspace_run/packages/pkg-a/say.ts
Normal file
@@ -0,0 +1 @@
|
||||
console.log("pkg-a");
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "pkg-b",
|
||||
"scripts": {
|
||||
"say": "bun ./say.ts"
|
||||
}
|
||||
}
|
||||
1
tests/script_test/workspace_run/packages/pkg-b/say.ts
Normal file
1
tests/script_test/workspace_run/packages/pkg-b/say.ts
Normal file
@@ -0,0 +1 @@
|
||||
console.log("pkg-b");
|
||||
Reference in New Issue
Block a user