bippy 0.3.13 → 0.3.15
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/LICENSE +1 -1
- package/dist/chunk-DWy1uDak.cjs +47 -0
- package/dist/core-BHLOH6E0.js +744 -0
- package/dist/core-BOYfIZ0s.d.cts +293 -0
- package/dist/core-C9jPbnEc.cjs +1164 -0
- package/dist/core-CmL25iLV.d.ts +293 -0
- package/dist/core.cjs +79 -286
- package/dist/core.d.cts +2 -221
- package/dist/core.d.ts +2 -221
- package/dist/core.js +11 -2
- package/dist/experiments/inspect.cjs +1109 -1400
- package/dist/experiments/inspect.d.cts +12 -10
- package/dist/experiments/inspect.d.ts +12 -10
- package/dist/experiments/inspect.js +1101 -1385
- package/dist/index-BtBZHVmz.d.cts +1 -0
- package/dist/index-D0E78WnU.d.ts +1 -0
- package/dist/index.cjs +80 -287
- package/dist/index.d.cts +3 -5
- package/dist/index.d.ts +3 -5
- package/dist/index.iife.js +9 -0
- package/dist/index.js +12 -3
- package/dist/jsx-dev-runtime.cjs +18 -33
- package/dist/jsx-dev-runtime.d.cts +7 -6
- package/dist/jsx-dev-runtime.d.ts +7 -6
- package/dist/jsx-dev-runtime.js +17 -28
- package/dist/jsx-runtime.cjs +16 -12
- package/dist/jsx-runtime.d.cts +3 -3
- package/dist/jsx-runtime.d.ts +3 -3
- package/dist/jsx-runtime.js +12 -4
- package/dist/source-C6Kcs2bv.cjs +2438 -0
- package/dist/source-CAKKlkON.js +2446 -0
- package/dist/source.cjs +84 -300
- package/dist/source.d.cts +8 -10
- package/dist/source.d.ts +8 -10
- package/dist/source.iife.js +14 -0
- package/dist/source.js +13 -4
- package/dist/src-BMy3jWE4.cjs +14 -0
- package/dist/{chunk-H6ZLR634.js → src-CAEV45VU.js} +5 -4
- package/package.json +6 -7
- package/dist/chunk-3DXHQSXK.js +0 -788
- package/dist/chunk-4N6XEHJD.cjs +0 -859
- package/dist/chunk-AQ674A4M.cjs +0 -38
- package/dist/chunk-EPG3GO3H.js +0 -35
- package/dist/chunk-FUZZZTS6.js +0 -2255
- package/dist/chunk-NKMRHYKS.cjs +0 -2259
- package/dist/chunk-TGUPYBYL.cjs +0 -15
- package/dist/index.global.js +0 -9
- package/dist/jsx-runtime-KafG0Y8O.d.cts +0 -72
- package/dist/jsx-runtime-KafG0Y8O.d.ts +0 -72
- package/dist/source.global.js +0 -9
package/LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright 2024 Aiden Bai
|
|
1
|
+
Copyright 2024 Aiden Bai
|
|
2
2
|
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
4
|
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license bippy
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Aiden Bai
|
|
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
|
+
//#region rolldown:runtime
|
|
10
|
+
var __create = Object.create;
|
|
11
|
+
var __defProp = Object.defineProperty;
|
|
12
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
13
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
14
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
15
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
16
|
+
var __commonJS = (cb, mod) => function() {
|
|
17
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
18
|
+
};
|
|
19
|
+
var __copyProps = (to, from, except, desc) => {
|
|
20
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
21
|
+
key = keys[i];
|
|
22
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
23
|
+
get: ((k) => from[k]).bind(null, key),
|
|
24
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return to;
|
|
28
|
+
};
|
|
29
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
30
|
+
value: mod,
|
|
31
|
+
enumerable: true
|
|
32
|
+
}) : target, mod));
|
|
33
|
+
|
|
34
|
+
//#endregion
|
|
35
|
+
|
|
36
|
+
Object.defineProperty(exports, '__commonJS', {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function () {
|
|
39
|
+
return __commonJS;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, '__toESM', {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function () {
|
|
45
|
+
return __toESM;
|
|
46
|
+
}
|
|
47
|
+
});
|