@stacksjs/defaults 0.70.282 → 0.70.283
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/ide/vscode/package.json +1 -1
- package/package.json +1 -1
- package/project/buddy +6 -5
package/ide/vscode/package.json
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@stacksjs/defaults",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "0.70.
|
|
5
|
+
"version": "0.70.283",
|
|
6
6
|
"description": "The complete managed Stacks application scaffold, including runtime defaults, AI guidance, editor metadata, and npm-backed project support files.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
package/project/buddy
CHANGED
|
@@ -111,12 +111,13 @@ run_buddy() {
|
|
|
111
111
|
CONDITIONS="--conditions development"
|
|
112
112
|
fi
|
|
113
113
|
|
|
114
|
-
#
|
|
115
|
-
#
|
|
116
|
-
#
|
|
117
|
-
#
|
|
114
|
+
# Installed dependencies are authoritative; Pantry is a fallback for tools
|
|
115
|
+
# the app does not install. Keeping node_modules first prevents a stale local
|
|
116
|
+
# Pantry snapshot from changing migrations, builds, or production commands.
|
|
117
|
+
# Only add Pantry after setup completed so a partial bootstrap cannot affect
|
|
118
|
+
# module resolution.
|
|
118
119
|
if [ -f "${PANTRY_SETUP_DONE}" ]; then
|
|
119
|
-
exec env PATH="${PANTRY_LOCAL_BIN}:${USER_LOCAL_BIN}:${PATH}" NODE_PATH="${
|
|
120
|
+
exec env PATH="${PANTRY_LOCAL_BIN}:${USER_LOCAL_BIN}:${PATH}" NODE_PATH="${ROOT_DIR}/node_modules:${PANTRY_DIR}${NODE_PATH:+:${NODE_PATH}}" "${BUN_CMD}" ${CONDITIONS} "${BUDDY_ENTRY}" "$@"
|
|
120
121
|
fi
|
|
121
122
|
exec env PATH="${PANTRY_LOCAL_BIN}:${USER_LOCAL_BIN}:${PATH}" "${BUN_CMD}" ${CONDITIONS} "${BUDDY_ENTRY}" "$@"
|
|
122
123
|
}
|