@gjsify/web-polyfills 0.4.31 → 0.4.32

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.
Files changed (2) hide show
  1. package/globals.mjs +8 -0
  2. package/package.json +33 -20
package/globals.mjs ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Meta package — `@gjsify/web-polyfills` is a dep-only umbrella that pulls
3
+ * in every Web polyfill. It has no own value exports, so the `browser`
4
+ * slot's `globals.mjs` re-export is intentionally empty. Present only to
5
+ * silence the resolver's "missing globals.mjs" warn-once when --app browser
6
+ * bundles happen to mention the bare specifier.
7
+ */
8
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/web-polyfills",
3
- "version": "0.4.31",
3
+ "version": "0.4.32",
4
4
  "description": "Meta package: all @gjsify Web API polyfill packages as dependencies",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -11,23 +11,36 @@
11
11
  "meta"
12
12
  ],
13
13
  "dependencies": {
14
- "@gjsify/abort-controller": "^0.4.31",
15
- "@gjsify/compression-streams": "^0.4.31",
16
- "@gjsify/dom-events": "^0.4.31",
17
- "@gjsify/dom-exception": "^0.4.31",
18
- "@gjsify/domparser": "^0.4.31",
19
- "@gjsify/eventsource": "^0.4.31",
20
- "@gjsify/fetch": "^0.4.31",
21
- "@gjsify/formdata": "^0.4.31",
22
- "@gjsify/gamepad": "^0.4.31",
23
- "@gjsify/message-channel": "^0.4.31",
24
- "@gjsify/web-globals": "^0.4.31",
25
- "@gjsify/web-streams": "^0.4.31",
26
- "@gjsify/webassembly": "^0.4.31",
27
- "@gjsify/webaudio": "^0.4.31",
28
- "@gjsify/webcrypto": "^0.4.31",
29
- "@gjsify/websocket": "^0.4.31",
30
- "@gjsify/webstorage": "^0.4.31",
31
- "@gjsify/xmlhttprequest": "^0.4.31"
32
- }
14
+ "@gjsify/abort-controller": "^0.4.32",
15
+ "@gjsify/compression-streams": "^0.4.32",
16
+ "@gjsify/dom-events": "^0.4.32",
17
+ "@gjsify/dom-exception": "^0.4.32",
18
+ "@gjsify/domparser": "^0.4.32",
19
+ "@gjsify/eventsource": "^0.4.32",
20
+ "@gjsify/fetch": "^0.4.32",
21
+ "@gjsify/formdata": "^0.4.32",
22
+ "@gjsify/gamepad": "^0.4.32",
23
+ "@gjsify/message-channel": "^0.4.32",
24
+ "@gjsify/web-globals": "^0.4.32",
25
+ "@gjsify/web-streams": "^0.4.32",
26
+ "@gjsify/webassembly": "^0.4.32",
27
+ "@gjsify/webaudio": "^0.4.32",
28
+ "@gjsify/webcrypto": "^0.4.32",
29
+ "@gjsify/websocket": "^0.4.32",
30
+ "@gjsify/webstorage": "^0.4.32",
31
+ "@gjsify/xmlhttprequest": "^0.4.32"
32
+ },
33
+ "gjsify": {
34
+ "runtimes": {
35
+ "gjs": "polyfill",
36
+ "node": "polyfill",
37
+ "browser": "native"
38
+ }
39
+ },
40
+ "exports": {
41
+ "./globals": "./globals.mjs"
42
+ },
43
+ "files": [
44
+ "globals.mjs"
45
+ ]
33
46
  }