@shipfox/client-shell 0.2.0 → 1.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 +15 -0
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/dist/vite/evaluate-features.d.ts +0 -1
- package/dist/vite/evaluate-features.d.ts.map +1 -1
- package/dist/vite/evaluate-features.js +60 -47
- package/dist/vite/evaluate-features.js.map +1 -1
- package/dist/vite/generate.js +2 -2
- package/dist/vite/generate.js.map +1 -1
- package/dist/vite/plugin.d.ts.map +1 -1
- package/dist/vite/plugin.js +3 -12
- package/dist/vite/plugin.js.map +1 -1
- package/package.json +28 -49
- package/src/vite/evaluate-features.test.ts +58 -3
- package/src/vite/evaluate-features.ts +71 -50
- package/src/vite/generate.ts +2 -2
- package/src/vite/plugin.test.ts +59 -9
- package/src/vite/plugin.ts +3 -16
- package/test/external/FINDINGS.md +33 -45
- package/test/external/README.md +21 -23
- package/test/external/fixture/package.json +1 -2
- package/test/external/fixture/src/app.fixture.tsx +78 -46
- package/test/external/fixture/src/features/external-settings.tsx +19 -0
- package/test/external/fixture/src/features/login-override.tsx +9 -0
- package/test/external/fixture/src/features.collision.ts +5 -5
- package/test/external/fixture/src/features.ts +49 -3
- package/test/external/fixture/src/link-typecheck.tsx +5 -5
- package/test/external/fixture/src/main.tsx +83 -1
- package/test/external/fixture/src/provider.ts +45 -0
- package/test/external/fixture/tsconfig.json +1 -1
- package/test/external/fixture/vite.config.ts +13 -2
- package/test/external/fixture/vitest.config.ts +3 -1
- package/test/external/verify.mjs +233 -47
- package/test/typecheck/shipfox-app.gen.ts +6 -6
- package/test/typecheck/types.tsx +6 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/test/external/fixture/src/features/override-impl.tsx +0 -12
- package/test/external/fixture/src/features/override.tsx +0 -20
- package/test/external/toy-feature/CHANGELOG.md +0 -15
- package/test/external/toy-feature/node_modules/.bin/shipfox-biome-check +0 -43
- package/test/external/toy-feature/node_modules/.bin/shipfox-biome-format +0 -43
- package/test/external/toy-feature/node_modules/.bin/shipfox-biome-lint +0 -43
- package/test/external/toy-feature/node_modules/.bin/shipfox-swc +0 -43
- package/test/external/toy-feature/node_modules/.bin/shipfox-tsc-check +0 -43
- package/test/external/toy-feature/node_modules/.bin/shipfox-tsc-emit +0 -43
- package/test/external/toy-feature/package.json +0 -57
- package/test/external/toy-feature/src/config.ts +0 -5
- package/test/external/toy-feature/src/index.ts +0 -64
- package/test/external/toy-feature/src/provider.tsx +0 -33
- package/test/external/toy-feature/src/routes/insights.tsx +0 -7
- package/test/external/toy-feature/src/routes/settings.tsx +0 -7
- package/test/external/toy-feature/tsconfig.build.json +0 -5
- package/test/external/toy-feature/tsconfig.json +0 -1
- package/test/not-route-impl.ts +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 37 files with swc (
|
|
2
|
+
Successfully compiled: 37 files with swc (244.54ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 47809a2: Hardens packed client composition validation against release artifacts, undeclared route packages, and optional Storybook testing peers.
|
|
8
|
+
- bb037af: Resolves workspace packages from source during development while published consumers continue to use compiled output.
|
|
9
|
+
- 5c63a2a: Validates the published default client composition from a clean external Vite consumer and fixes typed access to the events settings route.
|
|
10
|
+
- d8658ba: Prevents composition builds from reading resolver IDs that include Vite version queries.
|
|
11
|
+
- Updated dependencies [bb037af]
|
|
12
|
+
- @shipfox/api-auth-dto@5.0.0
|
|
13
|
+
- @shipfox/api-workspaces-dto@5.0.0
|
|
14
|
+
- @shipfox/client-api@1.0.0
|
|
15
|
+
- @shipfox/client-config@1.0.0
|
|
16
|
+
- @shipfox/react-ui@0.3.2
|
|
17
|
+
|
|
3
18
|
## 0.2.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|