@wrongstack/core 0.1.1 → 0.1.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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -163,7 +163,7 @@ declare class DefaultPluginAPI implements PluginAPI {
|
|
|
163
163
|
* (PluginAPI, types/plugin) changes in a way that breaks existing setup
|
|
164
164
|
* functions. Plugins declare `apiVersion: "^1.0"` to opt into this contract.
|
|
165
165
|
*/
|
|
166
|
-
declare const KERNEL_API_VERSION = "0.1.
|
|
166
|
+
declare const KERNEL_API_VERSION = "0.1.1";
|
|
167
167
|
interface LoadPluginsOptions {
|
|
168
168
|
apiFactory: (plugin: Plugin) => PluginAPI;
|
|
169
169
|
log: Logger;
|
package/dist/index.js
CHANGED
|
@@ -6314,7 +6314,7 @@ var noopSlashCommands = {
|
|
|
6314
6314
|
};
|
|
6315
6315
|
|
|
6316
6316
|
// src/plugin/loader.ts
|
|
6317
|
-
var KERNEL_API_VERSION = "0.1.
|
|
6317
|
+
var KERNEL_API_VERSION = "0.1.1";
|
|
6318
6318
|
function parseSemver(v) {
|
|
6319
6319
|
const parts = v.replace(/^[^0-9]*/, "").split(".").map((s) => Number.parseInt(s, 10) || 0);
|
|
6320
6320
|
return [parts[0] ?? 0, parts[1] ?? 0, parts[2] ?? 0];
|