From a8a328b83e35f1d9b49be9f1550e3d7ba2b5d985 Mon Sep 17 00:00:00 2001 From: richardo2016 Date: Fri, 12 Jul 2024 12:38:28 +0800 Subject: [PATCH] chore: cleanup. --- README.md | 8 ++++---- package.json | 1 + packages/orm/package.json | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b7d5acca..e9b3384e 100644 --- a/README.md +++ b/README.md @@ -4,24 +4,24 @@ This is one mono-style fibjs lib starter. ### Get Started -Make sure you have installed `lerna` globally. +Make sure you have installed `lerna` in this repo. ```bash -npm i -g lerna +npm i ``` Then, run ```bash # bootstrap development -lerna bootstrap +npm run bootstrap ``` Then try to run `ci` script in each package like below: ```bash -lerna run ci +npm run ci ``` Finally, start your development, change code and test it. diff --git a/package.json b/package.json index 8c3548df..6871b043 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "bootstrap": "lerna bootstrap --no-hoist", "bootstrap:noci": "lerna bootstrap --no-hoist --no-ci", "build": "lerna run build", + "publish": "lerna run publish", "ci": "lerna run ci", "update-pkg": "fibjs ./scripts/write-pkg-manifest.js", "postinstall": "rm -rf node_modules/@type/node" diff --git a/packages/orm/package.json b/packages/orm/package.json index 6b722065..69968815 100644 --- a/packages/orm/package.json +++ b/packages/orm/package.json @@ -1,6 +1,6 @@ { "name": "@fxjs/orm", - "version": "1.16.10", + "version": "1.16.9", "description": "", "main": "lib", "types": "typings/index.d.ts",