@nsnanocat/util 2.5.7 → 2.5.9
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 +2 -1
- package/index.mjs +0 -24
- /package/lib/{index.mjs → index.js} +0 -0
package/package.json
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"bugs": "https://github.com/NSNanoCat/util/issues",
|
|
16
16
|
"main": "index.mjs",
|
|
17
17
|
"types": "types/nsnanocat-util.d.ts",
|
|
18
|
+
"type": "module",
|
|
18
19
|
"scripts": {
|
|
19
20
|
"tsc:build": "npx tsc",
|
|
20
21
|
"test": "node --test test/*.test.js",
|
|
@@ -41,5 +42,5 @@
|
|
|
41
42
|
"registry": "https://registry.npmjs.org/",
|
|
42
43
|
"access": "public"
|
|
43
44
|
},
|
|
44
|
-
"version": "2.5.
|
|
45
|
+
"version": "2.5.9"
|
|
45
46
|
}
|
package/index.mjs
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export * from "./lib/app.mjs";
|
|
2
|
-
export * from "./lib/argument.mjs";
|
|
3
|
-
export * from "./lib/done.mjs";
|
|
4
|
-
export * from "./lib/notification.mjs";
|
|
5
|
-
export * from "./lib/time.mjs";
|
|
6
|
-
export * from "./lib/wait.mjs";
|
|
7
|
-
export * from "./polyfill/Console.mjs";
|
|
8
|
-
export * from "./polyfill/fetch.mjs";
|
|
9
|
-
export * from "./polyfill/Lodash.mjs";
|
|
10
|
-
export * from "./polyfill/qs.mjs";
|
|
11
|
-
export * from "./polyfill/StatusTexts.mjs";
|
|
12
|
-
export * from "./polyfill/Storage.mjs";
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* 已标准化的 `$argument` 快照。
|
|
16
|
-
* Normalized `$argument` snapshot.
|
|
17
|
-
*/
|
|
18
|
-
export const $argument = globalThis.$argument ?? {};
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* 兼容别名(建议优先使用 `$argument`)。
|
|
22
|
-
* Backward-compatible alias (prefer `$argument`).
|
|
23
|
-
*/
|
|
24
|
-
export const argument = $argument;
|
|
File without changes
|