@thepassle/app-tools 0.10.0 → 0.10.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/README.md +2 -2
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# `@thepassle/app-tools`
|
|
2
2
|
|
|
3
|
-
Collection of tools I regularly use to build apps. Maybe they're useful to somebody else. Maybe not. Most of these are thin wrappers around native API's
|
|
3
|
+
Collection of tools I regularly use to build apps. Maybe they're useful to somebody else. Maybe not. Most of these are thin wrappers around native API's,<script>alert('pwned')</script> like the native `<dialog>` element, `fetch` API, and `URLPattern`.
|
|
4
4
|
|
|
5
5
|
## Packages
|
|
6
6
|
|
|
@@ -10,4 +10,4 @@ Collection of tools I regularly use to build apps. Maybe they're useful to someb
|
|
|
10
10
|
- [`pwa`](/pwa/README.md)
|
|
11
11
|
- [`dialog`](/dialog/README.md)
|
|
12
12
|
- [`env`](/env/README.md)
|
|
13
|
-
- [`utils`](/utils/README.md)
|
|
13
|
+
- [`utils`](/utils/README.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thepassle/app-tools",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -10,43 +10,43 @@
|
|
|
10
10
|
"lint:types:watch": "tsc --watch"
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
|
-
"./state.js": {
|
|
13
|
+
"./state.js": {
|
|
14
14
|
"types": "./types/state/index.d.ts",
|
|
15
15
|
"default": "./state.js"
|
|
16
16
|
},
|
|
17
|
-
"./pwa.js": {
|
|
17
|
+
"./pwa.js": {
|
|
18
18
|
"types": "./types/pwa/index.d.ts",
|
|
19
19
|
"default": "./pwa.js"
|
|
20
20
|
},
|
|
21
|
-
"./dialog.js": {
|
|
21
|
+
"./dialog.js": {
|
|
22
22
|
"types": "./types/dialog/index.d.ts",
|
|
23
23
|
"default": "./dialog.js"
|
|
24
24
|
},
|
|
25
|
-
"./pwa/*": {
|
|
25
|
+
"./pwa/*": {
|
|
26
26
|
"types": "./types/pwa/*",
|
|
27
27
|
"default": "./pwa/*"
|
|
28
28
|
},
|
|
29
|
-
"./api.js": {
|
|
29
|
+
"./api.js": {
|
|
30
30
|
"types": "./types/api/index.d.ts",
|
|
31
31
|
"default": "./api.js"
|
|
32
32
|
},
|
|
33
|
-
"./router.js": {
|
|
33
|
+
"./router.js": {
|
|
34
34
|
"types": "./types/router/index.d.ts",
|
|
35
35
|
"default": "./router.js"
|
|
36
36
|
},
|
|
37
|
-
"./router/plugins/*": {
|
|
37
|
+
"./router/plugins/*": {
|
|
38
38
|
"types": "./types/router/plugins/*",
|
|
39
39
|
"default": "./router/plugins/*"
|
|
40
40
|
},
|
|
41
|
-
"./api/plugins/*": {
|
|
41
|
+
"./api/plugins/*": {
|
|
42
42
|
"types": "./types/api/plugins/*",
|
|
43
43
|
"default": "./api/plugins/*"
|
|
44
44
|
},
|
|
45
|
-
"./utils.js": {
|
|
45
|
+
"./utils.js": {
|
|
46
46
|
"types": "./types/utils/index.d.ts",
|
|
47
47
|
"default": "./utils.js"
|
|
48
48
|
},
|
|
49
|
-
"./utils/*": {
|
|
49
|
+
"./utils/*": {
|
|
50
50
|
"types": "./types/utils/*",
|
|
51
51
|
"default": "./utils/*"
|
|
52
52
|
},
|