@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 +6 -0
- package/dist/planning.d.ts +3 -0
- package/dist/planning.d.ts.map +1 -0
- package/dist/planning.js +2 -0
- package/dist/planning.js.map +1 -0
- package/package.json +8 -1
- package/src/planning.test.ts +9 -0
- package/src/planning.ts +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -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"}
|
package/dist/planning.js
ADDED
|
@@ -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.
|
|
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
|
+
});
|