@gby/destroyable 3.8.0 → 3.9.0
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/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gby/destroyable",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "@gby/destroyable 提供了用于构建可销毁对象的类的基类,用于使得地管理可销毁对象的生命周期",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -17,6 +17,11 @@
|
|
|
17
17
|
"import": "./dist/index-node.js"
|
|
18
18
|
},
|
|
19
19
|
".": {
|
|
20
|
+
"browser": {
|
|
21
|
+
"require": "./dist/index-web.cjs",
|
|
22
|
+
"types": "./dist/index-web.d.ts",
|
|
23
|
+
"import": "./dist/index-web.js"
|
|
24
|
+
},
|
|
20
25
|
"require": "./dist/index.cjs",
|
|
21
26
|
"types": "./dist/index.d.ts",
|
|
22
27
|
"import": "./dist/index.js"
|