@take-out/scripts 0.2.7 → 0.2.9
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.
- package/package.json +3 -3
- 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.
|
|
3
|
+
"version": "0.2.9",
|
|
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.
|
|
33
|
-
"@take-out/run": "0.2.
|
|
32
|
+
"@take-out/helpers": "0.2.9",
|
|
33
|
+
"@take-out/run": "0.2.9",
|
|
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(
|
|
431
|
+
Object.values(rootPackageJson.env || {}).some(
|
|
432
432
|
(v: any) => typeof v === 'string' && v.startsWith('$dep:')
|
|
433
433
|
)
|
|
434
434
|
) {
|