@checkstack/queue-bullmq-common 0.1.21 → 0.1.22

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