bippy 0.3.0 → 0.3.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.
Files changed (39) hide show
  1. package/README.md +24 -0
  2. package/dist/chunk-AMVCK6H6.js +2240 -0
  3. package/dist/chunk-AQ674A4M.cjs +38 -0
  4. package/dist/{chunk-2R5SJTFQ.js → chunk-E67XFKKG.js} +2 -7
  5. package/dist/chunk-EPG3GO3H.js +35 -0
  6. package/dist/{chunk-POWCTW3F.cjs → chunk-J2F3EJOS.cjs} +2 -7
  7. package/dist/chunk-LMTDJIAV.cjs +2246 -0
  8. package/dist/{chunk-R357CEJU.cjs → chunk-OZZZ2ACU.cjs} +57 -40
  9. package/dist/{chunk-NK43KTPL.js → chunk-SI6Y374H.js} +55 -39
  10. package/dist/core.cjs +80 -67
  11. package/dist/core.d.cts +13 -3
  12. package/dist/core.d.ts +13 -3
  13. package/dist/core.js +2 -1
  14. package/dist/experiments/inspect.cjs +25 -15
  15. package/dist/experiments/inspect.js +13 -3
  16. package/dist/experiments/shrinkwrap.cjs +7 -6
  17. package/dist/experiments/shrinkwrap.js +3 -2
  18. package/dist/index.cjs +81 -68
  19. package/dist/index.d.cts +3 -2
  20. package/dist/index.d.ts +3 -2
  21. package/dist/index.global.js +1 -1
  22. package/dist/index.js +3 -2
  23. package/dist/jsx-dev-runtime.cjs +47 -0
  24. package/dist/jsx-dev-runtime.d.cts +8 -0
  25. package/dist/jsx-dev-runtime.d.ts +8 -0
  26. package/dist/jsx-dev-runtime.js +37 -0
  27. package/dist/{types-bP3PNEQt.d.cts → jsx-runtime-LhDmw-G0.d.cts} +1 -0
  28. package/dist/{types-bP3PNEQt.d.ts → jsx-runtime-LhDmw-G0.d.ts} +1 -0
  29. package/dist/jsx-runtime.cjs +15 -0
  30. package/dist/jsx-runtime.d.cts +3 -0
  31. package/dist/jsx-runtime.d.ts +3 -0
  32. package/dist/jsx-runtime.js +4 -0
  33. package/dist/shrinkwrap.global.js +1 -1
  34. package/dist/source.cjs +274 -2216
  35. package/dist/source.d.cts +7 -3
  36. package/dist/source.d.ts +7 -3
  37. package/dist/source.global.js +14 -1
  38. package/dist/source.js +4 -2229
  39. package/package.json +21 -1
@@ -0,0 +1,38 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * @license bippy
5
+ *
6
+ * Copyright (c) Aiden Bai, Million Software, Inc.
7
+ *
8
+ * This source code is licensed under the MIT license found in the
9
+ * LICENSE file in the root directory of this source tree.
10
+ */
11
+ var __create = Object.create;
12
+ var __defProp = Object.defineProperty;
13
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
14
+ var __getOwnPropNames = Object.getOwnPropertyNames;
15
+ var __getProtoOf = Object.getPrototypeOf;
16
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
17
+ var __commonJS = (cb, mod) => function __require() {
18
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
19
+ };
20
+ var __copyProps = (to, from, except, desc) => {
21
+ if (from && typeof from === "object" || typeof from === "function") {
22
+ for (let key of __getOwnPropNames(from))
23
+ if (!__hasOwnProp.call(to, key) && key !== except)
24
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
25
+ }
26
+ return to;
27
+ };
28
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
29
+ // If the importer is in node compatibility mode or this is not an ESM
30
+ // file that has been converted to a CommonJS file using a Babel-
31
+ // compatible transform (i.e. "__esModule" has not been set), then set
32
+ // "default" to the CommonJS "module.exports" for node compatibility.
33
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
34
+ mod
35
+ ));
36
+
37
+ exports.__commonJS = __commonJS;
38
+ exports.__toESM = __toESM;
@@ -1,4 +1,4 @@
1
- import { isClientEnvironment, getRDTHook } from './chunk-NK43KTPL.js';
1
+ import { safelyInstallRDTHook } from './chunk-SI6Y374H.js';
2
2
 
3
3
  /**
4
4
  * @license bippy
@@ -10,9 +10,4 @@ import { isClientEnvironment, getRDTHook } from './chunk-NK43KTPL.js';
10
10
  */
11
11
 
12
12
  // src/index.ts
13
- try {
14
- if (isClientEnvironment()) {
15
- getRDTHook();
16
- }
17
- } catch {
18
- }
13
+ safelyInstallRDTHook();
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @license bippy
3
+ *
4
+ * Copyright (c) Aiden Bai, Million Software, Inc.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ var __create = Object.create;
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __getProtoOf = Object.getPrototypeOf;
14
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
15
+ var __commonJS = (cb, mod) => function __require() {
16
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
27
+ // If the importer is in node compatibility mode or this is not an ESM
28
+ // file that has been converted to a CommonJS file using a Babel-
29
+ // compatible transform (i.e. "__esModule" has not been set), then set
30
+ // "default" to the CommonJS "module.exports" for node compatibility.
31
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
32
+ mod
33
+ ));
34
+
35
+ export { __commonJS, __toESM };
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkR357CEJU_cjs = require('./chunk-R357CEJU.cjs');
3
+ var chunkOZZZ2ACU_cjs = require('./chunk-OZZZ2ACU.cjs');
4
4
 
5
5
  /**
6
6
  * @license bippy
@@ -12,9 +12,4 @@ var chunkR357CEJU_cjs = require('./chunk-R357CEJU.cjs');
12
12
  */
13
13
 
14
14
  // src/index.ts
15
- try {
16
- if (chunkR357CEJU_cjs.isClientEnvironment()) {
17
- chunkR357CEJU_cjs.getRDTHook();
18
- }
19
- } catch {
20
- }
15
+ chunkOZZZ2ACU_cjs.safelyInstallRDTHook();