@checkstack/pluginmanager-common 0.2.10 → 0.2.12

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 +21 -0
  2. package/package.json +6 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @checkstack/pluginmanager-common
2
2
 
3
+ ## 0.2.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [defb97b]
8
+ - @checkstack/common@0.18.0
9
+
10
+ ## 0.2.11
11
+
12
+ ### Patch Changes
13
+
14
+ - 2e20792: Declare `sideEffects` (CSS-only) so bundlers can tree-shake these packages' barrel exports
15
+
16
+ These packages now declare `"sideEffects": ["**/*.css"]` in their
17
+ `package.json`. This lets a consuming bundle drop unused barrel re-exports
18
+ instead of pulling a whole package's component graph when only one
19
+ provider/hook is imported (e.g. importing `SessionProvider` no longer dragged an
20
+ admin form). It is build metadata only - no runtime behavior change.
21
+
22
+ - @checkstack/common@0.17.0
23
+
3
24
  ## 0.2.10
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@checkstack/pluginmanager-common",
3
- "version": "0.2.10",
3
+ "version": "0.2.12",
4
4
  "license": "Elastic-2.0",
5
5
  "type": "module",
6
+ "sideEffects": [
7
+ "**/*.css"
8
+ ],
6
9
  "exports": {
7
10
  ".": {
8
11
  "types": "./src/index.ts",
@@ -10,12 +13,12 @@
10
13
  }
11
14
  },
12
15
  "dependencies": {
13
- "@checkstack/common": "0.17.0",
16
+ "@checkstack/common": "0.18.0",
14
17
  "zod": "^4.0.0"
15
18
  },
16
19
  "devDependencies": {
17
20
  "@checkstack/tsconfig": "0.0.7",
18
- "@checkstack/scripts": "0.6.3",
21
+ "@checkstack/scripts": "0.6.5",
19
22
  "typescript": "^5.7.2"
20
23
  },
21
24
  "scripts": {