@take-out/scripts 0.2.7 → 0.2.8

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 +3 -3
  2. package/src/up.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@take-out/scripts",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "type": "module",
5
5
  "main": "./src/cmd.ts",
6
6
  "sideEffects": false,
@@ -29,8 +29,8 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@clack/prompts": "^0.8.2",
32
- "@take-out/helpers": "0.2.7",
33
- "@take-out/run": "0.2.7",
32
+ "@take-out/helpers": "0.2.8",
33
+ "@take-out/run": "0.2.8",
34
34
  "picocolors": "^1.1.1"
35
35
  }
36
36
  }
package/src/up.ts CHANGED
@@ -428,7 +428,7 @@ await cmd`upgrade packages by name or pattern`
428
428
 
429
429
  // sync resolved $dep: values (like ZERO_VERSION) to all env targets
430
430
  if (
431
- Object.values(packageJson.env || {}).some(
431
+ Object.values(rootPackageJson.env || {}).some(
432
432
  (v: any) => typeof v === 'string' && v.startsWith('$dep:')
433
433
  )
434
434
  ) {