node-karin 1.3.0 → 1.3.2
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 +15 -0
- package/dist/cli/index.cjs +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/index.d.ts +953 -33
- package/dist/index.js +1022 -9
- package/dist/web/assets/{index-DZiGKQVX.js → index-DBhwzM4r.js} +122 -122
- package/dist/web/assets/index-DguR9GI2.js +1 -0
- package/dist/web/assets/index-widUlXkS.js +1 -0
- package/dist/web/index.html +1 -1
- package/package.json +1 -4
- package/dist/web/assets/index-CMuq1Bq4.js +0 -1
- package/dist/web/assets/index-DhJc5mB4.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# 更新日志
|
|
2
2
|
|
|
3
|
+
## [1.3.2](https://github.com/KarinJS/Karin/compare/core-v1.3.1...core-v1.3.2) (2025-02-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Bug Fixes
|
|
7
|
+
|
|
8
|
+
* web config ([3ed39a0](https://github.com/KarinJS/Karin/commit/3ed39a095978cca055415c67e1fae21388df3c09))
|
|
9
|
+
|
|
10
|
+
## [1.3.1](https://github.com/KarinJS/Karin/compare/core-v1.3.0...core-v1.3.1) (2025-02-10)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 🐛 Bug Fixes
|
|
14
|
+
|
|
15
|
+
* pnpm 10 (原谅我 push错了 ([1b06936](https://github.com/KarinJS/Karin/commit/1b06936b15864cb6ac61ab279448a86c630f23e4))
|
|
16
|
+
* web页面的请求不走缓存 ([5055eab](https://github.com/KarinJS/Karin/commit/5055eab032bf786d471ca88fbd5c685982e3c4e2))
|
|
17
|
+
|
|
3
18
|
## [1.3.0](https://github.com/KarinJS/Karin/compare/core-v1.2.3...core-v1.3.0) (2025-02-08)
|
|
4
19
|
|
|
5
20
|
|
package/dist/cli/index.cjs
CHANGED
|
@@ -282,7 +282,7 @@ var modifyPackageJson = () => {
|
|
|
282
282
|
if (!data.scripts) data.scripts = {};
|
|
283
283
|
data.scripts.karin = "karin";
|
|
284
284
|
data.pnpm = {};
|
|
285
|
-
data.pnpm.
|
|
285
|
+
data.pnpm.onlyBuiltDependenciesFile = [
|
|
286
286
|
"sqlite3",
|
|
287
287
|
"classic-level"
|
|
288
288
|
];
|
package/dist/cli/index.js
CHANGED
|
@@ -273,7 +273,7 @@ var modifyPackageJson = () => {
|
|
|
273
273
|
if (!data.scripts) data.scripts = {};
|
|
274
274
|
data.scripts.karin = "karin";
|
|
275
275
|
data.pnpm = {};
|
|
276
|
-
data.pnpm.
|
|
276
|
+
data.pnpm.onlyBuiltDependenciesFile = [
|
|
277
277
|
"sqlite3",
|
|
278
278
|
"classic-level"
|
|
279
279
|
];
|