From c2c3c7cdc05c07c185cc2c2635a06835352c4504 Mon Sep 17 00:00:00 2001 From: JounQin Date: Mon, 11 Mar 2024 14:28:49 +0800 Subject: [PATCH] fix: add missing entry `wrapper.mjs` (#3966) fix #3958 --- @commitlint/config-conventional/package.json | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/@commitlint/config-conventional/package.json b/@commitlint/config-conventional/package.json index 0e97fb4056..a4b8c30c64 100644 --- a/@commitlint/config-conventional/package.json +++ b/@commitlint/config-conventional/package.json @@ -11,7 +11,8 @@ } }, "files": [ - "lib/" + "lib/", + "wrapper.mjs" ], "scripts": { "deps": "dep-check", diff --git a/package.json b/package.json index 66213a0e75..a777297180 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "lint-fix": "eslint . --ext .js,.ts --fix", "format": "prettier **/*.{ts,js,json,yml,md} -l", "format-fix": "prettier **/*.{ts,js,json,yml,md} --write", - "publish": "lerna publish --conventional-commits", + "publish": "lerna publish --conventional-commits --dist-tag release-v18", "reinstall": "yarn clean && yarn install", "start": "yarn watch", "test": "cross-env HOME=$PWD NODE_OPTIONS=--experimental-vm-modules jest",