@mostrom/app-shell 0.1.0 → 0.1.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mostrom/app-shell",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "bin": {
@@ -54,7 +54,7 @@
54
54
  "tw-animate-css": "^1.4.0",
55
55
  "vaul": "^1.1.2",
56
56
  "zod": "^4.3.6",
57
- "@mostrom/service-catalog": "^0.1.0"
57
+ "@mostrom/service-catalog": "^0.1.1"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/react": "19.2.14",
@@ -95,7 +95,7 @@ cleanup() {
95
95
  }
96
96
  trap cleanup 0 1 2 3 15
97
97
 
98
- if [ -f "${APP_SHELL_DIR}/.env" ]; then
98
+ if [ -z "${NODE_AUTH_TOKEN:-}" ] && [ -f "${APP_SHELL_DIR}/.env" ]; then
99
99
  token_line="$(grep -E '^(export[[:space:]]+)?NODE_AUTH_TOKEN=' "${APP_SHELL_DIR}/.env" | tail -n 1 || true)"
100
100
  if [ -n "$token_line" ]; then
101
101
  token_value="$(printf '%s' "$token_line" | sed -E 's/^(export[[:space:]]+)?NODE_AUTH_TOKEN=//')"