node-karin 1.0.3 → 1.0.4
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/cli/index.cjs +1 -0
- package/dist/cli/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# 更新日志
|
|
2
2
|
|
|
3
|
+
## [1.0.4](https://github.com/KarinJS/Karin/compare/node-karin-v1.0.3...node-karin-v1.0.4) (2025-01-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Bug Fixes
|
|
7
|
+
|
|
8
|
+
* test ci ([437350f](https://github.com/KarinJS/Karin/commit/437350f3376af7bc7f3fca6e51e8c6d846f1d798))
|
|
9
|
+
|
|
3
10
|
## [1.0.3](https://github.com/KarinJS/Karin/compare/node-karin-v1.0.2...node-karin-v1.0.3) (2025-01-15)
|
|
4
11
|
|
|
5
12
|
|
package/dist/cli/index.cjs
CHANGED
|
@@ -259,6 +259,7 @@ var modifyPackageJson = () => {
|
|
|
259
259
|
const pkg = fs2__default.default.readFileSync(path2__default.default.join(dir, "package.json"), "utf-8");
|
|
260
260
|
const data = JSON.parse(pkg);
|
|
261
261
|
data.type = "module";
|
|
262
|
+
if (!data.scripts) data.scripts = {};
|
|
262
263
|
data.scripts.karin = "karin";
|
|
263
264
|
const list = [
|
|
264
265
|
"app",
|
package/dist/cli/index.js
CHANGED
|
@@ -250,6 +250,7 @@ var modifyPackageJson = () => {
|
|
|
250
250
|
const pkg = fs2.readFileSync(path2.join(dir, "package.json"), "utf-8");
|
|
251
251
|
const data = JSON.parse(pkg);
|
|
252
252
|
data.type = "module";
|
|
253
|
+
if (!data.scripts) data.scripts = {};
|
|
253
254
|
data.scripts.karin = "karin";
|
|
254
255
|
const list = [
|
|
255
256
|
"app",
|