@shipfox/client-features 3.0.1 → 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 +40 -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 -28
- 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,38 +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-agent": "
|
|
35
|
-
"@shipfox/client-auth": "
|
|
36
|
-
"@shipfox/client-integrations": "
|
|
37
|
-
"@shipfox/client-invitations": "
|
|
38
|
-
"@shipfox/client-projects": "
|
|
39
|
-
"@shipfox/client-
|
|
40
|
-
"@shipfox/client-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"@
|
|
44
|
-
"@types/react": "^19.1.11",
|
|
45
|
-
"@types/react-dom": "^19.1.7",
|
|
46
|
-
"react": "^19.1.1",
|
|
47
|
-
"react-dom": "^19.1.1",
|
|
48
|
-
"@shipfox/biome": "1.8.2",
|
|
49
|
-
"@shipfox/client-agent": "3.0.1",
|
|
50
|
-
"@shipfox/client-auth": "3.0.1",
|
|
51
|
-
"@shipfox/client-integrations": "3.0.1",
|
|
52
|
-
"@shipfox/client-invitations": "3.0.1",
|
|
53
|
-
"@shipfox/client-projects": "3.0.1",
|
|
54
|
-
"@shipfox/client-workflows": "3.0.1",
|
|
55
|
-
"@shipfox/client-workspace-settings": "3.0.1",
|
|
56
|
-
"@shipfox/swc": "1.2.6",
|
|
57
|
-
"@shipfox/ts-config": "1.3.8",
|
|
58
|
-
"@shipfox/typescript": "1.1.7",
|
|
59
|
-
"@shipfox/vitest": "1.2.3"
|
|
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"
|
|
60
45
|
},
|
|
61
46
|
"scripts": {
|
|
62
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};
|