@shipfox/client-features 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 +23 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +2 -1
- package/dist/runtime.js.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +13 -9
- package/src/index.test.ts +3 -0
- package/src/index.ts +6 -0
- package/src/runtime.tsx +2 -5
- package/tsconfig.build.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/client-features",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -25,19 +25,23 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@swc/helpers": "^0.5.17",
|
|
28
|
-
"@shipfox/client-
|
|
28
|
+
"@shipfox/client-onboarding": "5.0.0",
|
|
29
|
+
"@shipfox/client-shell": "5.0.0"
|
|
29
30
|
},
|
|
30
31
|
"peerDependencies": {
|
|
31
32
|
"@tanstack/react-router": "^1.170.16",
|
|
32
33
|
"react": "^19.0.0",
|
|
33
34
|
"react-dom": "^19.0.0",
|
|
34
|
-
"@shipfox/client-
|
|
35
|
-
"@shipfox/client-
|
|
36
|
-
"@shipfox/client-
|
|
37
|
-
"@shipfox/client-
|
|
38
|
-
"@shipfox/client-
|
|
39
|
-
"@shipfox/client-
|
|
40
|
-
"@shipfox/client-
|
|
35
|
+
"@shipfox/client-agent": "5.0.0",
|
|
36
|
+
"@shipfox/client-auth": "5.0.0",
|
|
37
|
+
"@shipfox/client-integrations": "5.0.0",
|
|
38
|
+
"@shipfox/client-invitations": "5.0.0",
|
|
39
|
+
"@shipfox/client-projects": "5.0.0",
|
|
40
|
+
"@shipfox/client-runners": "5.0.0",
|
|
41
|
+
"@shipfox/client-secrets": "5.0.0",
|
|
42
|
+
"@shipfox/client-triggers": "5.0.0",
|
|
43
|
+
"@shipfox/client-workflows": "5.0.0",
|
|
44
|
+
"@shipfox/client-workspace-settings": "5.0.0"
|
|
41
45
|
},
|
|
42
46
|
"scripts": {
|
|
43
47
|
"build": "shipfox-swc",
|
package/src/index.test.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -3,7 +3,10 @@ import {authFeature} from '@shipfox/client-auth/feature';
|
|
|
3
3
|
import {integrationsFeature} from '@shipfox/client-integrations/feature';
|
|
4
4
|
import {invitationsFeature} from '@shipfox/client-invitations/feature';
|
|
5
5
|
import {projectsFeature} from '@shipfox/client-projects/feature';
|
|
6
|
+
import {runnersFeature} from '@shipfox/client-runners/feature';
|
|
7
|
+
import {secretsFeature} from '@shipfox/client-secrets/feature';
|
|
6
8
|
import type {ClientFeature} from '@shipfox/client-shell';
|
|
9
|
+
import {triggersFeature} from '@shipfox/client-triggers/feature';
|
|
7
10
|
import {workflowsFeature} from '@shipfox/client-workflows/feature';
|
|
8
11
|
import {workspaceSettingsFeature} from '@shipfox/client-workspace-settings/feature';
|
|
9
12
|
|
|
@@ -15,6 +18,9 @@ export function defaultFeatures(): ClientFeature[] {
|
|
|
15
18
|
projectsFeature,
|
|
16
19
|
workflowsFeature,
|
|
17
20
|
agentFeature,
|
|
21
|
+
runnersFeature,
|
|
22
|
+
secretsFeature,
|
|
23
|
+
triggersFeature,
|
|
18
24
|
workspaceSettingsFeature,
|
|
19
25
|
];
|
|
20
26
|
}
|
package/src/runtime.tsx
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
ProjectBreadcrumb,
|
|
4
|
-
ProjectLayoutGuard,
|
|
5
|
-
} from '@shipfox/client-projects';
|
|
1
|
+
import {loadWorkspaceSetupRoute} from '@shipfox/client-onboarding';
|
|
2
|
+
import {ProjectBreadcrumb, ProjectLayoutGuard} from '@shipfox/client-projects';
|
|
6
3
|
import type {ChromeSlots, WorkspaceSetupGate} from '@shipfox/client-shell/runtime';
|
|
7
4
|
|
|
8
5
|
export const defaultChrome: ChromeSlots = {ProjectBreadcrumb, ProjectLayoutGuard};
|