@checkstack/queue-bullmq-common 0.1.20 → 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.
- package/CHANGELOG.md +22 -0
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
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
|
+
|
|
17
|
+
## 0.1.21
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [8cad340]
|
|
22
|
+
- Updated dependencies [8cad340]
|
|
23
|
+
- @checkstack/common@0.17.0
|
|
24
|
+
|
|
3
25
|
## 0.1.20
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/queue-bullmq-common",
|
|
3
|
-
"version": "0.1.
|
|
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"
|
|
@@ -13,12 +16,12 @@
|
|
|
13
16
|
"pack": "bunx @checkstack/scripts plugin-pack"
|
|
14
17
|
},
|
|
15
18
|
"dependencies": {
|
|
16
|
-
"@checkstack/common": "0.
|
|
19
|
+
"@checkstack/common": "0.17.0"
|
|
17
20
|
},
|
|
18
21
|
"devDependencies": {
|
|
19
22
|
"@types/bun": "latest",
|
|
20
23
|
"@checkstack/tsconfig": "0.0.7",
|
|
21
|
-
"@checkstack/scripts": "0.6.
|
|
24
|
+
"@checkstack/scripts": "0.6.4"
|
|
22
25
|
},
|
|
23
26
|
"description": "Checkstack queue-bullmq-common plugin",
|
|
24
27
|
"author": {
|