@ankhorage/expo-runtime 0.0.2 → 0.0.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @ankhorage/expo-runtime
2
2
 
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 264d7da: Update CONTRACTS
8
+
9
+ ## 0.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 1919ae8: Add a public planning entrypoint for Expo runtime resolution.
14
+
3
15
  ## 0.0.2
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  # EXPO-RUNTIME
5
5
 
6
- ![license: MIT](././paradox/badges/license.svg) ![npm: v0.0.0](././paradox/badges/npm.svg) ![runtime: bun](././paradox/badges/runtime.svg) ![typescript: strict](././paradox/badges/typescript.svg) ![eslint: checked](././paradox/badges/eslint.svg) ![prettier: checked](././paradox/badges/prettier.svg) ![build: checked](././paradox/badges/build.svg) ![tests: checked](././paradox/badges/tests.svg) ![docs: paradox](././paradox/badges/docs.svg)
6
+ ![license: MIT](././paradox/badges/license.svg) ![npm: v0.0.3](././paradox/badges/npm.svg) ![runtime: bun](././paradox/badges/runtime.svg) ![typescript: strict](././paradox/badges/typescript.svg) ![eslint: checked](././paradox/badges/eslint.svg) ![prettier: checked](././paradox/badges/prettier.svg) ![build: checked](././paradox/badges/build.svg) ![tests: checked](././paradox/badges/tests.svg) ![docs: paradox](././paradox/badges/docs.svg)
7
7
 
8
8
  Declarative runtime integration for Expo apps: maps app capabilities to permissions, packages, config plugins, providers, and adapters
9
9
 
@@ -0,0 +1,3 @@
1
+ export type { ExpoRuntimeAdapterId, ExpoRuntimePlan, ExpoRuntimeProviderId, } from './resolveExpoRuntimePlan';
2
+ export { resolveExpoRuntimePlan } from './resolveExpoRuntimePlan';
3
+ //# sourceMappingURL=planning.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"planning.d.ts","sourceRoot":"","sources":["../src/planning.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,oBAAoB,EACpB,eAAe,EACf,qBAAqB,GACtB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export { resolveExpoRuntimePlan } from './resolveExpoRuntimePlan';
2
+ //# sourceMappingURL=planning.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"planning.js","sourceRoot":"","sources":["../src/planning.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC","sourcesContent":["export type {\n ExpoRuntimeAdapterId,\n ExpoRuntimePlan,\n ExpoRuntimeProviderId,\n} from './resolveExpoRuntimePlan';\nexport { resolveExpoRuntimePlan } from './resolveExpoRuntimePlan';\n"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ankhorage/expo-runtime",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.0.4",
5
5
  "description": "Declarative runtime integration for Expo apps: maps app capabilities to permissions, packages, config plugins, providers, and adapters",
6
6
  "homepage": "https://github.com/ankhorage/expo-runtime#readme",
7
7
  "bugs": {
@@ -22,7 +22,7 @@
22
22
  "runtime"
23
23
  ],
24
24
  "dependencies": {
25
- "@ankhorage/contracts": "^1.18.0",
25
+ "@ankhorage/contracts": "^1.18.2",
26
26
  "@ankhorage/permissions": "^0.2.0",
27
27
  "@ankhorage/zora": "^2.8.0"
28
28
  },
@@ -41,6 +41,13 @@
41
41
  "types": "./src/index.ts",
42
42
  "import": "./dist/index.js",
43
43
  "default": "./dist/index.js"
44
+ },
45
+ "./planning": {
46
+ "react-native": "./src/planning.ts",
47
+ "browser": "./src/planning.ts",
48
+ "types": "./src/planning.ts",
49
+ "import": "./dist/planning.js",
50
+ "default": "./dist/planning.js"
44
51
  }
45
52
  },
46
53
  "publishConfig": {
@@ -0,0 +1,9 @@
1
+ import { describe, expect, test } from 'bun:test';
2
+
3
+ import { resolveExpoRuntimePlan } from './planning';
4
+
5
+ describe('planning entrypoint', () => {
6
+ test('exports resolveExpoRuntimePlan', () => {
7
+ expect(typeof resolveExpoRuntimePlan).toBe('function');
8
+ });
9
+ });
@@ -0,0 +1,6 @@
1
+ export type {
2
+ ExpoRuntimeAdapterId,
3
+ ExpoRuntimePlan,
4
+ ExpoRuntimeProviderId,
5
+ } from './resolveExpoRuntimePlan';
6
+ export { resolveExpoRuntimePlan } from './resolveExpoRuntimePlan';