@checkstack/script-packages-frontend 0.4.1 → 0.4.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/package.json +11 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @checkstack/script-packages-frontend
2
2
 
3
+ ## 0.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [defb97b]
8
+ - Updated dependencies [defb97b]
9
+ - Updated dependencies [defb97b]
10
+ - @checkstack/common@0.18.0
11
+ - @checkstack/ui@1.20.0
12
+ - @checkstack/sdk@0.116.1
13
+ - @checkstack/frontend-api@0.12.1
14
+ - @checkstack/script-packages-common@0.3.7
15
+ - @checkstack/signal-frontend@0.3.1
16
+
17
+ ## 0.4.2
18
+
19
+ ### Patch Changes
20
+
21
+ - 2e20792: Declare `sideEffects` (CSS-only) so bundlers can tree-shake these packages' barrel exports
22
+
23
+ These packages now declare `"sideEffects": ["**/*.css"]` in their
24
+ `package.json`. This lets a consuming bundle drop unused barrel re-exports
25
+ instead of pulling a whole package's component graph when only one
26
+ provider/hook is imported (e.g. importing `SessionProvider` no longer dragged an
27
+ admin form). It is build metadata only - no runtime behavior change.
28
+
29
+ - Updated dependencies [2e20792]
30
+ - Updated dependencies [2e20792]
31
+ - Updated dependencies [2e20792]
32
+ - @checkstack/frontend-api@0.12.0
33
+ - @checkstack/ui@1.19.0
34
+ - @checkstack/signal-frontend@0.3.0
35
+ - @checkstack/script-packages-common@0.3.6
36
+ - @checkstack/common@0.17.0
37
+ - @checkstack/sdk@0.115.1
38
+
3
39
  ## 0.4.1
4
40
 
5
41
  ### Patch Changes
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@checkstack/script-packages-frontend",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "license": "Elastic-2.0",
5
5
  "type": "module",
6
+ "sideEffects": [
7
+ "**/*.css"
8
+ ],
6
9
  "main": "./dist/index.js",
7
10
  "checkstack": {
8
11
  "type": "frontend"
@@ -22,12 +25,12 @@
22
25
  "test": "bun test"
23
26
  },
24
27
  "dependencies": {
25
- "@checkstack/common": "0.17.0",
26
- "@checkstack/frontend-api": "0.11.1",
27
- "@checkstack/sdk": "0.113.1",
28
- "@checkstack/script-packages-common": "0.3.5",
29
- "@checkstack/signal-frontend": "0.2.6",
30
- "@checkstack/ui": "1.18.0",
28
+ "@checkstack/common": "0.18.0",
29
+ "@checkstack/frontend-api": "0.12.1",
30
+ "@checkstack/sdk": "0.116.1",
31
+ "@checkstack/script-packages-common": "0.3.7",
32
+ "@checkstack/signal-frontend": "0.3.1",
33
+ "@checkstack/ui": "1.20.0",
31
34
  "lucide-react": "^1.17.0",
32
35
  "react": "19.2.7",
33
36
  "react-router-dom": "^7.16.0"
@@ -36,6 +39,6 @@
36
39
  "@types/react": "^19.0.0",
37
40
  "typescript": "^5.7.2",
38
41
  "@checkstack/tsconfig": "0.0.7",
39
- "@checkstack/scripts": "0.6.3"
42
+ "@checkstack/scripts": "0.6.5"
40
43
  }
41
44
  }