pnpm install @pitrix/coupons --save-dev
import couponsRoutes from '@pitrix/coupons/lib/routers';
export default [
...couponsRoutes,
];
# 构建 npm 发布需要的代码
npm run build:lib
# 发布新版
npm run release
标准版本:
npm run release
pnpm publish
构建发布到仓库中所需的文件,standard-version 会生成 changelog,打上 tag 并提交 commit;
你也可以指定版本
pnpm run release -- --release-as 1.1.0
# 提交 commit tag
git push --follow-tags
预发布版本:
预发布版本不希望生成 changelog, 所以可以在 package.json 中 手动调整版本号,例如 1.1.3-xx,发布时需要指定 tag 为 next。
pnpm publish --tag=next