@verbumia/feedback 0.2.1 → 0.2.2
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/core.d.ts +1 -0
- package/core.js +7 -0
- package/native.d.ts +1 -0
- package/native.js +7 -0
- package/package.json +11 -1
- package/react.d.ts +1 -0
- package/react.js +7 -0
- package/svelte.d.ts +1 -0
- package/svelte.js +7 -0
- package/vue.d.ts +1 -0
- package/vue.js +7 -0
package/core.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/core/index";
|
package/core.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Root re-export shim. Resolvers that ignore the package "exports" field
|
|
2
|
+
// (notably Metro / React Native — Expo SDK 52 has unstable_enablePackageExports
|
|
3
|
+
// off by default) resolve subpaths against the filesystem from the package
|
|
4
|
+
// root. This file lets "@verbumia/feedback/core" resolve with NO app-side
|
|
5
|
+
// Metro config. Exports-aware resolvers (Node, modern bundlers) keep using
|
|
6
|
+
// the "exports" map and never see this file. Mirrors exports["./core"].
|
|
7
|
+
export * from "./dist/core/index.js";
|
package/native.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/native/index";
|
package/native.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Root re-export shim. Resolvers that ignore the package "exports" field
|
|
2
|
+
// (notably Metro / React Native — Expo SDK 52 has unstable_enablePackageExports
|
|
3
|
+
// off by default) resolve subpaths against the filesystem from the package
|
|
4
|
+
// root. This file lets "@verbumia/feedback/native" resolve with NO app-side
|
|
5
|
+
// Metro config. Exports-aware resolvers (Node, modern bundlers) keep using
|
|
6
|
+
// the "exports" map and never see this file. Mirrors exports["./native"].
|
|
7
|
+
export * from "./dist/native/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verbumia/feedback",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Verbumia End-User Translation Evaluation widget — let your end users rate and suggest translations. React (web) + React Native / Expo.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://verbumia.ca",
|
|
@@ -51,6 +51,16 @@
|
|
|
51
51
|
},
|
|
52
52
|
"files": [
|
|
53
53
|
"dist",
|
|
54
|
+
"core.js",
|
|
55
|
+
"core.d.ts",
|
|
56
|
+
"react.js",
|
|
57
|
+
"react.d.ts",
|
|
58
|
+
"native.js",
|
|
59
|
+
"native.d.ts",
|
|
60
|
+
"vue.js",
|
|
61
|
+
"vue.d.ts",
|
|
62
|
+
"svelte.js",
|
|
63
|
+
"svelte.d.ts",
|
|
54
64
|
"README.md",
|
|
55
65
|
"CONTRACT.md",
|
|
56
66
|
"LICENSE"
|
package/react.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/react/index";
|
package/react.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Root re-export shim. Resolvers that ignore the package "exports" field
|
|
2
|
+
// (notably Metro / React Native — Expo SDK 52 has unstable_enablePackageExports
|
|
3
|
+
// off by default) resolve subpaths against the filesystem from the package
|
|
4
|
+
// root. This file lets "@verbumia/feedback/react" resolve with NO app-side
|
|
5
|
+
// Metro config. Exports-aware resolvers (Node, modern bundlers) keep using
|
|
6
|
+
// the "exports" map and never see this file. Mirrors exports["./react"].
|
|
7
|
+
export * from "./dist/react/index.js";
|
package/svelte.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/svelte/index";
|
package/svelte.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Root re-export shim. Resolvers that ignore the package "exports" field
|
|
2
|
+
// (notably Metro / React Native — Expo SDK 52 has unstable_enablePackageExports
|
|
3
|
+
// off by default) resolve subpaths against the filesystem from the package
|
|
4
|
+
// root. This file lets "@verbumia/feedback/svelte" resolve with NO app-side
|
|
5
|
+
// Metro config. Exports-aware resolvers (Node, modern bundlers) keep using
|
|
6
|
+
// the "exports" map and never see this file. Mirrors exports["./svelte"].
|
|
7
|
+
export * from "./dist/svelte/index.js";
|
package/vue.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/vue/index";
|
package/vue.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Root re-export shim. Resolvers that ignore the package "exports" field
|
|
2
|
+
// (notably Metro / React Native — Expo SDK 52 has unstable_enablePackageExports
|
|
3
|
+
// off by default) resolve subpaths against the filesystem from the package
|
|
4
|
+
// root. This file lets "@verbumia/feedback/vue" resolve with NO app-side
|
|
5
|
+
// Metro config. Exports-aware resolvers (Node, modern bundlers) keep using
|
|
6
|
+
// the "exports" map and never see this file. Mirrors exports["./vue"].
|
|
7
|
+
export * from "./dist/vue/index.js";
|