@take-out/scripts 0.1.33 → 0.1.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/run.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@take-out/scripts",
3
- "version": "0.1.33",
3
+ "version": "0.1.35",
4
4
  "type": "module",
5
5
  "main": "./src/run.ts",
6
6
  "sideEffects": false,
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "@clack/prompts": "^0.8.2",
32
32
  "@lydell/node-pty": "^1.2.0-beta.3",
33
- "@take-out/helpers": "0.1.33",
33
+ "@take-out/helpers": "0.1.35",
34
34
  "picocolors": "^1.1.1"
35
35
  },
36
36
  "peerDependencies": {
package/src/run.ts CHANGED
@@ -235,6 +235,7 @@ const runScript = async (
235
235
  const proc = spawn('bun', runArgs, {
236
236
  stdio: ['ignore', 'pipe', 'pipe'],
237
237
  shell: false,
238
+ detached: true,
238
239
  env: {
239
240
  ...process.env,
240
241
  FORCE_COLOR: '3',