@checkstack/incident-common 1.6.2 → 1.6.4

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 +32 -0
  2. package/package.json +10 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @checkstack/incident-common
2
2
 
3
+ ## 1.6.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [defb97b]
8
+ - Updated dependencies [defb97b]
9
+ - @checkstack/catalog-common@2.5.0
10
+ - @checkstack/common@0.18.0
11
+ - @checkstack/frontend-api@0.12.1
12
+ - @checkstack/notification-common@1.4.2
13
+ - @checkstack/signal-common@0.2.13
14
+
15
+ ## 1.6.3
16
+
17
+ ### Patch Changes
18
+
19
+ - 2e20792: Declare `sideEffects` (CSS-only) so bundlers can tree-shake these packages' barrel exports
20
+
21
+ These packages now declare `"sideEffects": ["**/*.css"]` in their
22
+ `package.json`. This lets a consuming bundle drop unused barrel re-exports
23
+ instead of pulling a whole package's component graph when only one
24
+ provider/hook is imported (e.g. importing `SessionProvider` no longer dragged an
25
+ admin form). It is build metadata only - no runtime behavior change.
26
+
27
+ - Updated dependencies [2e20792]
28
+ - Updated dependencies [2e20792]
29
+ - @checkstack/frontend-api@0.12.0
30
+ - @checkstack/catalog-common@2.4.3
31
+ - @checkstack/notification-common@1.4.1
32
+ - @checkstack/signal-common@0.2.12
33
+ - @checkstack/common@0.17.0
34
+
3
35
  ## 1.6.2
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,26 +1,29 @@
1
1
  {
2
2
  "name": "@checkstack/incident-common",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "license": "Elastic-2.0",
5
5
  "type": "module",
6
+ "sideEffects": [
7
+ "**/*.css"
8
+ ],
6
9
  "exports": {
7
10
  ".": {
8
11
  "import": "./src/index.ts"
9
12
  }
10
13
  },
11
14
  "dependencies": {
12
- "@checkstack/common": "0.17.0",
13
- "@checkstack/catalog-common": "2.4.2",
14
- "@checkstack/frontend-api": "0.11.1",
15
- "@checkstack/notification-common": "1.4.0",
16
- "@checkstack/signal-common": "0.2.11",
15
+ "@checkstack/common": "0.18.0",
16
+ "@checkstack/catalog-common": "2.5.0",
17
+ "@checkstack/frontend-api": "0.12.1",
18
+ "@checkstack/notification-common": "1.4.2",
19
+ "@checkstack/signal-common": "0.2.13",
17
20
  "@orpc/contract": "^1.14.4",
18
21
  "zod": "^4.2.1"
19
22
  },
20
23
  "devDependencies": {
21
24
  "typescript": "^5.7.2",
22
25
  "@checkstack/tsconfig": "0.0.7",
23
- "@checkstack/scripts": "0.6.3"
26
+ "@checkstack/scripts": "0.6.5"
24
27
  },
25
28
  "scripts": {
26
29
  "typecheck": "tsgo -b",