wardens 0.6.0-rc.2 → 0.6.0-rc.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +1 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
14
14
|
|
15
15
|
- Renamed public type `ResourceContext` to `ResourceScope`.
|
16
16
|
- `destroy(...)` is no longer allowed to destroy child resources, only roots.
|
17
|
+
- Added tree-shaking metadata. This is useful for bundle analysis tools.
|
17
18
|
|
18
19
|
## [0.5.1] - 2023-08-12
|
19
20
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wardens",
|
3
|
-
"version": "0.6.0-rc.
|
3
|
+
"version": "0.6.0-rc.3",
|
4
4
|
"description": "A framework for resource management",
|
5
5
|
"type": "module",
|
6
6
|
"main": "./dist/wardens.cjs",
|
@@ -9,6 +9,7 @@
|
|
9
9
|
"repository": "git@github.com:PsychoLlama/wardens.git",
|
10
10
|
"author": "Jesse Gibson <JesseTheGibson@gmail.com>",
|
11
11
|
"license": "MIT",
|
12
|
+
"sideEffects": false,
|
12
13
|
"exports": {
|
13
14
|
".": {
|
14
15
|
"require": "./dist/wardens.cjs",
|