@ankhorage/studio 2.0.9 → 2.0.10
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/README.md +1 -1
- package/package.json +10 -6
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
# @ankhorage/studio
|
|
5
5
|
|
|
6
|
-
         
|
|
7
7
|
|
|
8
8
|
Standalone Studio authoring package for Ankhorage apps.
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ankhorage/studio",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.10",
|
|
4
4
|
"description": "Studio authoring package for Ankhorage apps",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/ankhorage/studio#readme",
|
|
@@ -178,15 +178,16 @@
|
|
|
178
178
|
"lint:fix": "ankhorage-eslint . --fix --max-warnings=0",
|
|
179
179
|
"format": "ankhorage-prettier --write .",
|
|
180
180
|
"format:check": "ankhorage-prettier --check .",
|
|
181
|
-
"knip": "ankhorage-knip",
|
|
182
181
|
"test": "bun test",
|
|
183
182
|
"test:acceptance:expo57-generated-app": "bun scripts/expo57-generated-app-acceptance.ts",
|
|
184
183
|
"test:acceptance:expo57-generated-capabilities": "bun scripts/expo57-generated-capability-acceptance.ts",
|
|
185
184
|
"test:acceptance:expo57-generated-navigation": "bun scripts/expo57-generated-navigation-acceptance.ts",
|
|
186
185
|
"test:acceptance:expo57-studio-standalone": "bun scripts/expo57-studio-standalone-acceptance.ts",
|
|
186
|
+
"test:acceptance:packed-studio-host": "bun scripts/packed-studio-host-acceptance.ts",
|
|
187
187
|
"test:e2e": "bun run test:e2e:generated-app-web && bun run test:e2e:infra",
|
|
188
188
|
"test:e2e:generated-app-web": "CHROME_PATH=\"${CHROME_PATH:-$(command -v google-chrome || command -v google-chrome-stable || command -v chromium || command -v chromium-browser || printf '%s' '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome')}\" ANKH_STUDIO_ADMIN_WEB_SMOKE=1 bun test src/host/generatedAdminExpoWeb.smoke.test.ts",
|
|
189
189
|
"test:e2e:infra": "ANKH_STUDIO_INFRA_E2E=1 bun test src/host/studioInfra.e2e.test.ts",
|
|
190
|
+
"test:e2e:expo57-production-infra": "ANKH_STUDIO_EXPO57_INFRA_E2E=1 bun test src/host/expo57GeneratedProductionInfra.e2e.test.ts",
|
|
190
191
|
"test:smoke:studio-web": "ANKH_STUDIO_WORKSPACE_WEB_SMOKE=1 bun test src/host/studioWorkspaceExpoWeb.smoke.test.ts",
|
|
191
192
|
"smoke:auth5-native:prepare": "bun scripts/auth5-native-oauth-smoke.ts",
|
|
192
193
|
"smoke:auth5-native:infra": "bun scripts/auth5-native-oauth-smoke-infra.ts",
|
|
@@ -196,7 +197,8 @@
|
|
|
196
197
|
"changeset:status": "changeset status --since=origin/main",
|
|
197
198
|
"version-packages": "changeset version",
|
|
198
199
|
"dev:host": "bun src/host/http/standalone.ts",
|
|
199
|
-
"test:host-smoke": "bun test src/host/hostLifecycle.smoke.test.ts"
|
|
200
|
+
"test:host-smoke": "bun test src/host/hostLifecycle.smoke.test.ts",
|
|
201
|
+
"knip:check": "ankhorage-knip"
|
|
200
202
|
},
|
|
201
203
|
"keywords": [
|
|
202
204
|
"ankhorage",
|
|
@@ -218,6 +220,7 @@
|
|
|
218
220
|
"@ankhorage/orchestrator": "^0.3.1",
|
|
219
221
|
"@ankhorage/orchestrator-module-expo-google-fonts": "^0.2.1",
|
|
220
222
|
"@ankhorage/orchestrator-module-expo-localization": "^0.6.0",
|
|
223
|
+
"@ankhorage/permissions": "^0.2.3",
|
|
221
224
|
"@ankhorage/react-native-reanimated-dnd-web": "^0.4.0",
|
|
222
225
|
"@ankhorage/runtime": "^2.2.1",
|
|
223
226
|
"@ankhorage/supabase-auth": "^1.2.5",
|
|
@@ -230,6 +233,7 @@
|
|
|
230
233
|
"@fastify/cors": "^11.2.0",
|
|
231
234
|
"expo-document-picker": "~57.0.1",
|
|
232
235
|
"expo-file-system": "~57.0.5",
|
|
236
|
+
"expo-image-picker": "~57.0.12",
|
|
233
237
|
"fastify": "^5.7.4"
|
|
234
238
|
},
|
|
235
239
|
"peerDependencies": {
|
|
@@ -253,9 +257,9 @@
|
|
|
253
257
|
"react-native-worklets": "0.10.1"
|
|
254
258
|
},
|
|
255
259
|
"devDependencies": {
|
|
256
|
-
"@ankhorage/ankh": "^0.8.
|
|
257
|
-
"@ankhorage/devtools": "^1.
|
|
258
|
-
"@ankhorage/paradox": "^0.1.
|
|
260
|
+
"@ankhorage/ankh": "^0.8.2",
|
|
261
|
+
"@ankhorage/devtools": "^1.7.0",
|
|
262
|
+
"@ankhorage/paradox": "^0.1.24",
|
|
259
263
|
"@changesets/cli": "^2.31.0",
|
|
260
264
|
"@types/bun": "^1.3.14",
|
|
261
265
|
"@types/node": "^24.13.3",
|