@ankhorage/expo-runtime 0.0.2 → 0.0.3

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,11 @@
1
1
  # @ankhorage/expo-runtime
2
2
 
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 1919ae8: Add a public planning entrypoint for Expo runtime resolution.
8
+
3
9
  ## 0.0.2
4
10
 
5
11
  ### Patch Changes
@@ -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.3",
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": {
@@ -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';