@ait-co/polyfill 0.1.4 → 0.1.5
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/dist/index.js +1 -1
- package/package.json +11 -12
package/dist/index.js
CHANGED
|
@@ -859,7 +859,7 @@ function uninstallVibrateShim() {
|
|
|
859
859
|
}
|
|
860
860
|
//#endregion
|
|
861
861
|
//#region src/index.ts
|
|
862
|
-
const VERSION = "0.1.
|
|
862
|
+
const VERSION = "0.1.5";
|
|
863
863
|
const NOOP = () => {};
|
|
864
864
|
/**
|
|
865
865
|
* Install every shim this library ships, but only if we detect an Apps in
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ait-co/polyfill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Polyfill so you can build Apps in Toss mini-apps with standard Web APIs (navigator.clipboard, navigator.geolocation, ...) instead of the proprietary SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -48,15 +48,6 @@
|
|
|
48
48
|
"sideEffects": [
|
|
49
49
|
"./dist/auto.js"
|
|
50
50
|
],
|
|
51
|
-
"scripts": {
|
|
52
|
-
"build": "tsdown",
|
|
53
|
-
"dev": "tsdown --watch",
|
|
54
|
-
"typecheck": "tsc --noEmit",
|
|
55
|
-
"test": "vitest run",
|
|
56
|
-
"lint": "biome check .",
|
|
57
|
-
"lint:fix": "biome check --write .",
|
|
58
|
-
"format": "biome format --write ."
|
|
59
|
-
},
|
|
60
51
|
"peerDependencies": {
|
|
61
52
|
"@apps-in-toss/web-framework": ">=2.4.0 <3.0.0"
|
|
62
53
|
},
|
|
@@ -82,7 +73,6 @@
|
|
|
82
73
|
"polyfill",
|
|
83
74
|
"web-api"
|
|
84
75
|
],
|
|
85
|
-
"packageManager": "pnpm@10.33.0",
|
|
86
76
|
"license": "BSD-3-Clause",
|
|
87
77
|
"publishConfig": {
|
|
88
78
|
"access": "public"
|
|
@@ -94,5 +84,14 @@
|
|
|
94
84
|
"homepage": "https://www.npmjs.com/package/@ait-co/polyfill",
|
|
95
85
|
"bugs": {
|
|
96
86
|
"url": "https://github.com/apps-in-toss-community/polyfill/issues"
|
|
87
|
+
},
|
|
88
|
+
"scripts": {
|
|
89
|
+
"build": "tsdown",
|
|
90
|
+
"dev": "tsdown --watch",
|
|
91
|
+
"typecheck": "tsc --noEmit",
|
|
92
|
+
"test": "vitest run",
|
|
93
|
+
"lint": "biome check .",
|
|
94
|
+
"lint:fix": "biome check --write .",
|
|
95
|
+
"format": "biome format --write ."
|
|
97
96
|
}
|
|
98
|
-
}
|
|
97
|
+
}
|