@forinda/kickjs-cli 5.2.0 → 5.2.3
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/builtins-BdvmVAJ1.mjs +3740 -0
- package/dist/builtins-Du70nybS.mjs +1066 -0
- package/dist/builtins-Du70nybS.mjs.map +1 -0
- package/dist/cli.mjs +2 -120
- package/dist/config-Dzw8Ws4d.mjs +11 -0
- package/dist/config-lCKbrRnt.mjs +12 -0
- package/dist/{config-DDrgs-I3.mjs.map → config-lCKbrRnt.mjs.map} +1 -1
- package/dist/generator-extension-Cp5FUUAw.mjs +2687 -0
- package/dist/generator-extension-Cp5FUUAw.mjs.map +1 -0
- package/dist/index.mjs +2 -5
- package/dist/plugin-Dv2gKsuC.mjs +11 -0
- package/dist/plugin-VPl_QQGb.mjs +12 -0
- package/dist/{plugin-6_YlK-JG.mjs.map → plugin-VPl_QQGb.mjs.map} +1 -1
- package/dist/rolldown-runtime-B6QC8dMY.mjs +11 -0
- package/dist/{run-plugins-B1R0HG0g.mjs → run-plugins-CM1Af-4B.mjs} +2 -3
- package/dist/typegen-C6ZfoYTC.mjs +114 -0
- package/dist/typegen-CBI7dNXr.mjs +115 -0
- package/dist/{typegen-DugZmi-0.mjs.map → typegen-CBI7dNXr.mjs.map} +1 -1
- package/dist/types-n4LRUF_c.mjs +12 -0
- package/dist/{types-CGB8BiQh.mjs.map → types-n4LRUF_c.mjs.map} +1 -1
- package/package.json +5 -5
- package/dist/builtins-BW3g09hP.mjs +0 -8538
- package/dist/builtins-C_VfEGdg.mjs +0 -4182
- package/dist/builtins-C_VfEGdg.mjs.map +0 -1
- package/dist/config-DDrgs-I3.mjs +0 -171
- package/dist/config-DsQe2yzy.mjs +0 -169
- package/dist/generator-extension-DRNQpoZP.mjs +0 -4380
- package/dist/generator-extension-DRNQpoZP.mjs.map +0 -1
- package/dist/plugin-6_YlK-JG.mjs +0 -71
- package/dist/plugin-CQ0yYXyr.mjs +0 -80
- package/dist/rolldown-runtime-CYBbkZNy.mjs +0 -24
- package/dist/typegen-CYCsmCRF.mjs +0 -1351
- package/dist/typegen-DugZmi-0.mjs +0 -1353
- package/dist/types-CGB8BiQh.mjs +0 -25
package/dist/types-CGB8BiQh.mjs
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @forinda/kickjs-cli v5.2.0
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) Felix Orinda
|
|
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
|
-
* @license MIT
|
|
10
|
-
*/
|
|
11
|
-
//#region src/plugin/types.ts
|
|
12
|
-
/** Identity helper — exists for type inference + parity with definePlugin. */
|
|
13
|
-
function defineCliPlugin(p) {
|
|
14
|
-
return p;
|
|
15
|
-
}
|
|
16
|
-
var KickPluginConflictError = class extends Error {
|
|
17
|
-
constructor(kind, id, owners) {
|
|
18
|
-
super(`Two plugins registered the same ${kind} '${id}': ${owners.join(", ")}. Plugins must use unique ${kind} names.`);
|
|
19
|
-
this.name = "KickPluginConflictError";
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
//#endregion
|
|
23
|
-
export { defineCliPlugin as n, KickPluginConflictError as t };
|
|
24
|
-
|
|
25
|
-
//# sourceMappingURL=types-CGB8BiQh.mjs.map
|