node-karin 1.13.7 → 1.13.8
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 +7 -0
- package/dist/module/art-template.d.ts +1 -0
- package/dist/module/log4js.d.ts +2 -0
- package/dist/module/log4js.mjs +2 -0
- package/package.json +12 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# 更新日志
|
|
2
2
|
|
|
3
|
+
## [1.13.8](https://github.com/KarinJS/Karin/compare/core-v1.13.7...core-v1.13.8) (2025-12-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 导出@karinjs/log4js ([#595](https://github.com/KarinJS/Karin/issues/595)) ([8b54a0f](https://github.com/KarinJS/Karin/commit/8b54a0f751e80a6689fefb986b4f7fc16369e966))
|
|
9
|
+
|
|
3
10
|
## [1.13.7](https://github.com/KarinJS/Karin/compare/core-v1.13.6...core-v1.13.7) (2025-12-12)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-karin",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.8",
|
|
4
4
|
"description": "Lightweight, efficient, concise, and stable robot framework.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
|
@@ -123,14 +123,19 @@
|
|
|
123
123
|
"types": "./dist/module/sqlite3.d.ts",
|
|
124
124
|
"development": "./module/sqlite3.ts",
|
|
125
125
|
"default": "./dist/module/sqlite3.mjs"
|
|
126
|
+
},
|
|
127
|
+
"./log4js": {
|
|
128
|
+
"types": "./dist/module/log4js.d.ts",
|
|
129
|
+
"development": "./module/log4js.ts",
|
|
130
|
+
"default": "./dist/module/log4js.mjs"
|
|
126
131
|
}
|
|
127
132
|
},
|
|
128
133
|
"main": "./dist/index.mjs",
|
|
129
134
|
"types": "./dist/index.d.ts",
|
|
130
135
|
"bin": {
|
|
131
136
|
"k": "./dist/cli/index.mjs",
|
|
132
|
-
"
|
|
133
|
-
"
|
|
137
|
+
"karin": "./dist/cli/index.mjs",
|
|
138
|
+
"ki": "./dist/cli/index.mjs"
|
|
134
139
|
},
|
|
135
140
|
"files": [
|
|
136
141
|
"dist",
|
|
@@ -175,22 +180,22 @@
|
|
|
175
180
|
"scripts": {
|
|
176
181
|
".": "pnpm app",
|
|
177
182
|
"app": "node dist/start/index.mjs",
|
|
183
|
+
"app:bun": "bun dist/start/index.mjs",
|
|
178
184
|
"build": "pnpm build:main && pnpm build:module",
|
|
179
185
|
"build:dev": "pnpm build:main",
|
|
186
|
+
"build:locale": "node cli/locale.js",
|
|
180
187
|
"build:main": "tsc && tsup",
|
|
181
188
|
"build:module": "tsc && tsup --config tsup.config.module.ts && pnpm build:locale",
|
|
182
189
|
"build:types": "tsc && tsup --config tsup.config.types.ts",
|
|
183
|
-
"build:locale": "node cli/locale.js",
|
|
184
|
-
"app:bun": "bun dist/start/index.mjs",
|
|
185
190
|
"cli": "node dist/cli/index.mjs",
|
|
186
191
|
"cli:dev": "tsx exports/cli/index.ts",
|
|
187
192
|
"dev": "cross-env EBV_FILE=\"development.env\" node --conditions=development --import tsx src/start/index.ts",
|
|
188
193
|
"dev:bun": "cross-env EBV_FILE=\"development.env\" bun --conditions=development src/start/index.ts",
|
|
194
|
+
"docs:build": "typedoc",
|
|
189
195
|
"pr": "node cli/pr.js all",
|
|
190
196
|
"pub": "npm publish --access public",
|
|
191
197
|
"pub-beta": "npm publish --access public --tag beta",
|
|
192
198
|
"sort": "sort-package-json && sort-json tsconfig.json",
|
|
193
|
-
"sync": "curl -X PUT \"https://registry-direct.npmmirror.com/-/package/node-karin/syncs\""
|
|
194
|
-
"docs:build": "typedoc"
|
|
199
|
+
"sync": "curl -X PUT \"https://registry-direct.npmmirror.com/-/package/node-karin/syncs\""
|
|
195
200
|
}
|
|
196
201
|
}
|