@h-rig/workspace-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/workspace-plugin
@@ -0,0 +1 @@
1
+ export { WORKSPACE_PLUGIN_NAME, workspacePlugin, createWorkspacePlugin, } from "./plugin";
@@ -0,0 +1,16 @@
1
+ // @bun
2
+ // packages/workspace-plugin/src/plugin.ts
3
+ import { definePlugin } from "@rig/core/config";
4
+ var WORKSPACE_PLUGIN_NAME = "@rig/workspace-plugin";
5
+ var workspacePlugin = definePlugin({
6
+ name: WORKSPACE_PLUGIN_NAME,
7
+ version: "0.0.0-alpha.1"
8
+ });
9
+ function createWorkspacePlugin() {
10
+ return workspacePlugin;
11
+ }
12
+ export {
13
+ workspacePlugin,
14
+ createWorkspacePlugin,
15
+ WORKSPACE_PLUGIN_NAME
16
+ };
@@ -0,0 +1,4 @@
1
+ export declare const WORKSPACE_PLUGIN_NAME = "@rig/workspace-plugin";
2
+ export declare const workspacePlugin: import("@rig/core/config").RigPlugin;
3
+ export declare function createWorkspacePlugin(): import("@rig/core/config").RigPlugin;
4
+ export default workspacePlugin;
@@ -0,0 +1,18 @@
1
+ // @bun
2
+ // packages/workspace-plugin/src/plugin.ts
3
+ import { definePlugin } from "@rig/core/config";
4
+ var WORKSPACE_PLUGIN_NAME = "@rig/workspace-plugin";
5
+ var workspacePlugin = definePlugin({
6
+ name: WORKSPACE_PLUGIN_NAME,
7
+ version: "0.0.0-alpha.1"
8
+ });
9
+ function createWorkspacePlugin() {
10
+ return workspacePlugin;
11
+ }
12
+ var plugin_default = workspacePlugin;
13
+ export {
14
+ workspacePlugin,
15
+ plugin_default as default,
16
+ createWorkspacePlugin,
17
+ WORKSPACE_PLUGIN_NAME
18
+ };
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@h-rig/workspace-plugin",
3
+ "version": "0.0.6-alpha.158",
4
+ "type": "module",
5
+ "description": "First-party local-dev workspace capability plugin for Rig (topology, dev-server / local-dev manifests, remote fleet + service-fabric, task-artifact previews).",
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
+ "./index": {
21
+ "types": "./dist/src/index.d.ts",
22
+ "import": "./dist/src/index.js"
23
+ }
24
+ },
25
+ "engines": {
26
+ "bun": ">=1.3.11"
27
+ },
28
+ "main": "./dist/src/index.js",
29
+ "module": "./dist/src/index.js",
30
+ "types": "./dist/src/index.d.ts",
31
+ "dependencies": {
32
+ "@rig/core": "npm:@h-rig/core@0.0.6-alpha.158"
33
+ }
34
+ }