blob: cce72af9c3dae76d6268ced247b2429746919caf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
"name": "to-bundle",
"scripts": {
"prebundle": "rm -rf node_modules; cp -r to_bundle_node_modules node_modules; ln -s always-bundled-module node_modules/always-bundled-module",
"bundle": "${BUN_BIN:-$(which bun)} bun ./entrypoint.ts"
},
"bun": {
"alwaysBundle": [
"always-bundled-module"
]
}
}
|