@shipfox/client-runners 4.0.0 → 5.0.0
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +8 -0
- package/dist/feature.d.ts +26 -0
- package/dist/feature.d.ts.map +1 -0
- package/dist/feature.js +34 -0
- package/dist/feature.js.map +1 -0
- package/dist/routes/provisioners-settings.d.ts +5 -0
- package/dist/routes/provisioners-settings.d.ts.map +1 -0
- package/dist/routes/provisioners-settings.js +10 -0
- package/dist/routes/provisioners-settings.js.map +1 -0
- package/dist/routes/runners-settings.d.ts +5 -0
- package/dist/routes/runners-settings.d.ts.map +1 -0
- package/dist/routes/runners-settings.js +10 -0
- package/dist/routes/runners-settings.js.map +1 -0
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +10 -1
- package/src/feature.ts +33 -0
- package/src/routes/provisioners-settings.tsx +8 -0
- package/src/routes/runners-settings.tsx +8 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled:
|
|
2
|
+
Successfully compiled: 22 files with swc (488.81ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @shipfox/client-runners
|
|
2
2
|
|
|
3
|
+
## 5.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f1d6465: Moves workspace-settings and project-workflow route ownership from centralized packages into each feature's own route module, so a feature package declares and ships its own settings pages.
|
|
8
|
+
- Updated dependencies [ffd727b]
|
|
9
|
+
- @shipfox/client-shell@5.0.0
|
|
10
|
+
|
|
3
11
|
## 4.0.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare const runnersFeature: {
|
|
2
|
+
readonly id: "shipfox.runners";
|
|
3
|
+
readonly routes: readonly [{
|
|
4
|
+
readonly path: "/workspaces/$wid/settings/runners";
|
|
5
|
+
readonly parent: "workspaceSettings";
|
|
6
|
+
readonly impl: "@shipfox/client-runners/routes/runners-settings";
|
|
7
|
+
}, {
|
|
8
|
+
readonly path: "/workspaces/$wid/settings/provisioners";
|
|
9
|
+
readonly parent: "workspaceSettings";
|
|
10
|
+
readonly impl: "@shipfox/client-runners/routes/provisioners-settings";
|
|
11
|
+
}];
|
|
12
|
+
readonly settingsSections: readonly [{
|
|
13
|
+
readonly id: "settings.runners";
|
|
14
|
+
readonly pathSegment: "runners";
|
|
15
|
+
readonly label: "Runners";
|
|
16
|
+
readonly icon: "settings3Line";
|
|
17
|
+
readonly order: 200;
|
|
18
|
+
}, {
|
|
19
|
+
readonly id: "settings.provisioners";
|
|
20
|
+
readonly pathSegment: "provisioners";
|
|
21
|
+
readonly label: "Runner provisioners";
|
|
22
|
+
readonly icon: "serverLine";
|
|
23
|
+
readonly order: 300;
|
|
24
|
+
}];
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=feature.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feature.d.ts","sourceRoot":"","sources":["../src/feature.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;CA8BzB,CAAC"}
|
package/dist/feature.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineClientFeature } from '@shipfox/client-shell';
|
|
2
|
+
export const runnersFeature = defineClientFeature({
|
|
3
|
+
id: 'shipfox.runners',
|
|
4
|
+
routes: [
|
|
5
|
+
{
|
|
6
|
+
path: '/workspaces/$wid/settings/runners',
|
|
7
|
+
parent: 'workspaceSettings',
|
|
8
|
+
impl: '@shipfox/client-runners/routes/runners-settings'
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
path: '/workspaces/$wid/settings/provisioners',
|
|
12
|
+
parent: 'workspaceSettings',
|
|
13
|
+
impl: '@shipfox/client-runners/routes/provisioners-settings'
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
settingsSections: [
|
|
17
|
+
{
|
|
18
|
+
id: 'settings.runners',
|
|
19
|
+
pathSegment: 'runners',
|
|
20
|
+
label: 'Runners',
|
|
21
|
+
icon: 'settings3Line',
|
|
22
|
+
order: 200
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: 'settings.provisioners',
|
|
26
|
+
pathSegment: 'provisioners',
|
|
27
|
+
label: 'Runner provisioners',
|
|
28
|
+
icon: 'serverLine',
|
|
29
|
+
order: 300
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
//# sourceMappingURL=feature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/feature.ts"],"sourcesContent":["import {defineClientFeature} from '@shipfox/client-shell';\n\nexport const runnersFeature = defineClientFeature({\n id: 'shipfox.runners',\n routes: [\n {\n path: '/workspaces/$wid/settings/runners',\n parent: 'workspaceSettings',\n impl: '@shipfox/client-runners/routes/runners-settings',\n },\n {\n path: '/workspaces/$wid/settings/provisioners',\n parent: 'workspaceSettings',\n impl: '@shipfox/client-runners/routes/provisioners-settings',\n },\n ],\n settingsSections: [\n {\n id: 'settings.runners',\n pathSegment: 'runners',\n label: 'Runners',\n icon: 'settings3Line',\n order: 200,\n },\n {\n id: 'settings.provisioners',\n pathSegment: 'provisioners',\n label: 'Runner provisioners',\n icon: 'serverLine',\n order: 300,\n },\n ],\n});\n"],"names":["defineClientFeature","runnersFeature","id","routes","path","parent","impl","settingsSections","pathSegment","label","icon","order"],"mappings":"AAAA,SAAQA,mBAAmB,QAAO,wBAAwB;AAE1D,OAAO,MAAMC,iBAAiBD,oBAAoB;IAChDE,IAAI;IACJC,QAAQ;QACN;YACEC,MAAM;YACNC,QAAQ;YACRC,MAAM;QACR;QACA;YACEF,MAAM;YACNC,QAAQ;YACRC,MAAM;QACR;KACD;IACDC,kBAAkB;QAChB;YACEL,IAAI;YACJM,aAAa;YACbC,OAAO;YACPC,MAAM;YACNC,OAAO;QACT;QACA;YACET,IAAI;YACJM,aAAa;YACbC,OAAO;YACPC,MAAM;YACNC,OAAO;QACT;KACD;AACH,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"provisioners-settings.d.ts","sourceRoot":"","sources":["../../src/routes/provisioners-settings.tsx"],"names":[],"mappings":";;;AAGA,wBAIG"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { defineRoute, useActiveWorkspace } from '@shipfox/client-shell/runtime';
|
|
3
|
+
import { WorkspaceProvisionerTokensSettingsSection } from '#index.js';
|
|
4
|
+
export default defineRoute({
|
|
5
|
+
component: ()=>/*#__PURE__*/ _jsx(WorkspaceProvisionerTokensSettingsSection, {
|
|
6
|
+
workspaceId: useActiveWorkspace().id
|
|
7
|
+
})
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
//# sourceMappingURL=provisioners-settings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/routes/provisioners-settings.tsx"],"sourcesContent":["import {defineRoute, useActiveWorkspace} from '@shipfox/client-shell/runtime';\nimport {WorkspaceProvisionerTokensSettingsSection} from '#index.js';\n\nexport default defineRoute({\n component: () => (\n <WorkspaceProvisionerTokensSettingsSection workspaceId={useActiveWorkspace().id} />\n ),\n});\n"],"names":["defineRoute","useActiveWorkspace","WorkspaceProvisionerTokensSettingsSection","component","workspaceId","id"],"mappings":";AAAA,SAAQA,WAAW,EAAEC,kBAAkB,QAAO,gCAAgC;AAC9E,SAAQC,yCAAyC,QAAO,YAAY;AAEpE,eAAeF,YAAY;IACzBG,WAAW,kBACT,KAACD;YAA0CE,aAAaH,qBAAqBI,EAAE;;AAEnF,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runners-settings.d.ts","sourceRoot":"","sources":["../../src/routes/runners-settings.tsx"],"names":[],"mappings":";;;AAGA,wBAIG"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { defineRoute, useActiveWorkspace } from '@shipfox/client-shell/runtime';
|
|
3
|
+
import { WorkspaceManualRegistrationTokensSettingsSection } from '#index.js';
|
|
4
|
+
export default defineRoute({
|
|
5
|
+
component: ()=>/*#__PURE__*/ _jsx(WorkspaceManualRegistrationTokensSettingsSection, {
|
|
6
|
+
workspaceId: useActiveWorkspace().id
|
|
7
|
+
})
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
//# sourceMappingURL=runners-settings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/routes/runners-settings.tsx"],"sourcesContent":["import {defineRoute, useActiveWorkspace} from '@shipfox/client-shell/runtime';\nimport {WorkspaceManualRegistrationTokensSettingsSection} from '#index.js';\n\nexport default defineRoute({\n component: () => (\n <WorkspaceManualRegistrationTokensSettingsSection workspaceId={useActiveWorkspace().id} />\n ),\n});\n"],"names":["defineRoute","useActiveWorkspace","WorkspaceManualRegistrationTokensSettingsSection","component","workspaceId","id"],"mappings":";AAAA,SAAQA,WAAW,EAAEC,kBAAkB,QAAO,gCAAgC;AAC9E,SAAQC,gDAAgD,QAAO,YAAY;AAE3E,eAAeF,YAAY;IACzBG,WAAW,kBACT,KAACD;YAAiDE,aAAaH,qBAAqBI,EAAE;;AAE1F,GAAG"}
|