@h-rig/scheduler-plugin 0.0.6-alpha.158

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/README.md ADDED
@@ -0,0 +1 @@
1
+ # @h-rig/scheduler-plugin
@@ -0,0 +1 @@
1
+ export { createSchedulerPlugin, SCHEDULER_PLUGIN_NAME, default } from "./plugin";
@@ -0,0 +1,16 @@
1
+ // @bun
2
+ // packages/scheduler-plugin/src/plugin.ts
3
+ import { definePlugin } from "@rig/core/config";
4
+ var SCHEDULER_PLUGIN_NAME = "@rig/scheduler-plugin";
5
+ function createSchedulerPlugin() {
6
+ return definePlugin({
7
+ name: SCHEDULER_PLUGIN_NAME,
8
+ version: "0.0.0-alpha.1"
9
+ });
10
+ }
11
+ var plugin_default = createSchedulerPlugin;
12
+ export {
13
+ plugin_default as default,
14
+ createSchedulerPlugin,
15
+ SCHEDULER_PLUGIN_NAME
16
+ };
@@ -0,0 +1,4 @@
1
+ import { type RigPlugin } from "@rig/core/config";
2
+ export declare const SCHEDULER_PLUGIN_NAME = "@rig/scheduler-plugin";
3
+ export declare function createSchedulerPlugin(): RigPlugin;
4
+ export default createSchedulerPlugin;
@@ -0,0 +1,16 @@
1
+ // @bun
2
+ // packages/scheduler-plugin/src/plugin.ts
3
+ import { definePlugin } from "@rig/core/config";
4
+ var SCHEDULER_PLUGIN_NAME = "@rig/scheduler-plugin";
5
+ function createSchedulerPlugin() {
6
+ return definePlugin({
7
+ name: SCHEDULER_PLUGIN_NAME,
8
+ version: "0.0.0-alpha.1"
9
+ });
10
+ }
11
+ var plugin_default = createSchedulerPlugin;
12
+ export {
13
+ plugin_default as default,
14
+ createSchedulerPlugin,
15
+ SCHEDULER_PLUGIN_NAME
16
+ };
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@h-rig/scheduler-plugin",
3
+ "version": "0.0.6-alpha.158",
4
+ "type": "module",
5
+ "description": "First-party task scheduler capability plugin for Rig (priority-queue ranking + worker fan-out over the isolation seam).",
6
+ "license": "UNLICENSED",
7
+ "files": [
8
+ "dist",
9
+ "README.md"
10
+ ],
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/src/index.d.ts",
14
+ "import": "./dist/src/index.js"
15
+ },
16
+ "./plugin": {
17
+ "types": "./dist/src/plugin.d.ts",
18
+ "import": "./dist/src/plugin.js"
19
+ }
20
+ },
21
+ "engines": {
22
+ "bun": ">=1.3.11"
23
+ },
24
+ "main": "./dist/src/index.js",
25
+ "module": "./dist/src/index.js",
26
+ "types": "./dist/src/index.d.ts",
27
+ "dependencies": {
28
+ "@rig/core": "npm:@h-rig/core@0.0.6-alpha.158"
29
+ }
30
+ }