-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.45 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "workspaces",
"private": "true",
"type": "module",
"workspaces": [
"packages/flow",
"packages/flow-distrib",
"packages/helpers",
"packages/providers",
"packages/ripgrep"
],
"scripts": {
"dev": "DEBUG=1 bun run packages/flow/sources/index.ts",
"typecheck": "bun run --filter '*/*' typecheck",
"format": "bunx prettier --write --",
"build:windows": "bun build packages/flow/sources/index.ts --compile --minify --target=bun-windows-x64 --outfile dist/flow-windows-x64",
"build:macos-intel": "bun build packages/flow/sources/index.ts --compile --minify --target=bun-darwin-x64 --outfile dist/flow-macos-x64",
"build:macos-arm": "bun build packages/flow/sources/index.ts --compile --minify --target=bun-darwin-arm64 --outfile dist/flow-macos-arm64",
"build:linux-x64": "bun build packages/flow/sources/index.ts --compile --minify --target=bun-linux-x64 --outfile dist/flow-linux-x64",
"build:linux-arm": "bun build packages/flow/sources/index.ts --compile --minify --target=bun-linux-arm64 --outfile dist/flow-linux-arm64",
"build": "bun run build:windows && bun run build:macos-intel && bun run build:macos-arm && bun run build:linux-x64 && bun run build:linux-arm",
"publish:prepare": "bun run build && bun run --filter flow-coder prepare",
"publish": "bun run publish:prepare && cd packages/flow-distrib && npm publish"
}
}