From e21d99dfb39b894f515f572e0431284eaeaf74e2 Mon Sep 17 00:00:00 2001 From: ggwujun <18570148691@163.com> Date: Wed, 14 Jul 2021 02:30:32 +0000 Subject: [PATCH] v1.1.1 --- CHANGELOG.md | 8 ++++++ lerna.json | 31 +++++++++++++++++----- packages/cli-plugin-add/CHANGELOG.md | 8 ++++++ packages/cli-plugin-add/package.json | 4 +-- packages/cli-plugin-fire/CHANGELOG.md | 8 ++++++ packages/cli-plugin-fire/package-lock.json | 2 +- packages/cli-plugin-fire/package.json | 4 +-- packages/cli-plugin-init/CHANGELOG.md | 8 ++++++ packages/cli-plugin-init/package.json | 4 +-- packages/cli-plugin-lint/CHANGELOG.md | 8 ++++++ packages/cli-plugin-lint/package.json | 4 +-- packages/cli/CHANGELOG.md | 8 ++++++ packages/cli/package.json | 12 ++++----- packages/core/CHANGELOG.md | 8 ++++++ packages/core/package.json | 2 +- 15 files changed, 96 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4b695ec..17da550e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.1.1 (2021-07-14) + +**Note:** Version bump only for package @winfe/winex + + + + + # 1.1.0 (2021-07-08) **Note:** Version bump only for package @winfe/winex diff --git a/lerna.json b/lerna.json index 8b4a2998..2c95cae8 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,8 @@ { - "version": "1.1.0", - "packages": ["packages/*"], + "version": "1.1.1", + "packages": [ + "packages/*" + ], "npmClient": "yarn", "useWorkspaces": true, "command": { @@ -10,16 +12,31 @@ "message": "chore(release): publish %s [skip ci]" }, "publish": { - "ignoreChanges": ["*.md", ".npmrc"], + "ignoreChanges": [ + "*.md", + ".npmrc" + ], "registry": "http://registry.npmjs.org/", - "version": ["patch"] + "version": [ + "patch" + ] }, "version": { "conventionalCommits": true, "includeMergedTags": true, - "ignoreChanges": ["*.md", ".npmrc"] + "ignoreChanges": [ + "*.md", + ".npmrc" + ] } }, - "npmClientArgs": ["--no-optional"], - "ignoreChanges": ["**/*.md", "**/*.test.ts", "**/test/**", "**/*.npmrc"] + "npmClientArgs": [ + "--no-optional" + ], + "ignoreChanges": [ + "**/*.md", + "**/*.test.ts", + "**/test/**", + "**/*.npmrc" + ] } diff --git a/packages/cli-plugin-add/CHANGELOG.md b/packages/cli-plugin-add/CHANGELOG.md index d3a95f99..d8eacd4d 100644 --- a/packages/cli-plugin-add/CHANGELOG.md +++ b/packages/cli-plugin-add/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.1.1 (2021-07-14) + +**Note:** Version bump only for package @winfe/cli-plugin-add + + + + + # 1.1.0 (2021-07-08) **Note:** Version bump only for package @winfe/cli-plugin-add diff --git a/packages/cli-plugin-add/package.json b/packages/cli-plugin-add/package.json index e3756609..8d52df24 100644 --- a/packages/cli-plugin-add/package.json +++ b/packages/cli-plugin-add/package.json @@ -1,6 +1,6 @@ { "name": "@winfe/cli-plugin-add", - "version": "1.1.0", + "version": "1.1.1", "homepage": "", "license": "MIT", "main": "lib/index.js", @@ -24,7 +24,7 @@ "dependencies": { "@types/execa": "^2.0.0", "@types/node": "^15.3.0", - "@winfe/cli-core": "^1.1.0", + "@winfe/cli-core": "^1.1.1", "@winfe/get-materials": "^1.0.8", "download-package-tarball": "^1.0.7", "enquirer": "^2.3.6", diff --git a/packages/cli-plugin-fire/CHANGELOG.md b/packages/cli-plugin-fire/CHANGELOG.md index 8e180790..f3a45274 100644 --- a/packages/cli-plugin-fire/CHANGELOG.md +++ b/packages/cli-plugin-fire/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.1.1 (2021-07-14) + +**Note:** Version bump only for package @winfe/cli-plugin-fire + + + + + # 1.1.0 (2021-07-08) **Note:** Version bump only for package @winfe/cli-plugin-fire diff --git a/packages/cli-plugin-fire/package-lock.json b/packages/cli-plugin-fire/package-lock.json index 60b2983b..89cd08e6 100644 --- a/packages/cli-plugin-fire/package-lock.json +++ b/packages/cli-plugin-fire/package-lock.json @@ -1,6 +1,6 @@ { "name": "@winfe/cli-plugin-fire", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/cli-plugin-fire/package.json b/packages/cli-plugin-fire/package.json index c5f37a08..c63d658b 100644 --- a/packages/cli-plugin-fire/package.json +++ b/packages/cli-plugin-fire/package.json @@ -1,6 +1,6 @@ { "name": "@winfe/cli-plugin-fire", - "version": "1.1.0", + "version": "1.1.1", "main": "lib/index.js", "module": "src/index.js", "types": "lib/index.d.ts", @@ -32,7 +32,7 @@ "@lerna/package-graph": "^4.0.0", "@lerna/project": "^4.0.0", "@vue/babel-preset-app": "^4.5.13", - "@winfe/cli-core": "^1.1.0", + "@winfe/cli-core": "^1.1.1", "autoprefixer": "^9.5.1", "babel-loader": "^8.0.4", "cache-loader": "^3.0.0", diff --git a/packages/cli-plugin-init/CHANGELOG.md b/packages/cli-plugin-init/CHANGELOG.md index 0324d79c..832586b9 100644 --- a/packages/cli-plugin-init/CHANGELOG.md +++ b/packages/cli-plugin-init/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.1.1 (2021-07-14) + +**Note:** Version bump only for package @winfe/cli-plugin-init + + + + + # 1.1.0 (2021-07-08) **Note:** Version bump only for package @winfe/cli-plugin-init diff --git a/packages/cli-plugin-init/package.json b/packages/cli-plugin-init/package.json index 19977651..dfb46147 100644 --- a/packages/cli-plugin-init/package.json +++ b/packages/cli-plugin-init/package.json @@ -1,6 +1,6 @@ { "name": "@winfe/cli-plugin-init", - "version": "1.1.0", + "version": "1.1.1", "main": "lib/index.js", "module": "src/index.js", "types": "lib/index.d.ts", @@ -27,7 +27,7 @@ "@types/fs-extra": "^9.0.11", "@types/ini": "^1.3.30", "@types/validate-npm-package-name": "^3.0.2", - "@winfe/cli-core": "^1.1.0", + "@winfe/cli-core": "^1.1.1", "@winfe/get-materials": "^1.0.8", "chalk": "^4.1.0", "cross-spawn": "^7.0.3", diff --git a/packages/cli-plugin-lint/CHANGELOG.md b/packages/cli-plugin-lint/CHANGELOG.md index e711a689..d9f5c3e8 100644 --- a/packages/cli-plugin-lint/CHANGELOG.md +++ b/packages/cli-plugin-lint/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.1.1 (2021-07-14) + +**Note:** Version bump only for package @winfe/cli-plugin-lint + + + + + # 1.1.0 (2021-07-08) **Note:** Version bump only for package @winfe/cli-plugin-lint diff --git a/packages/cli-plugin-lint/package.json b/packages/cli-plugin-lint/package.json index bac78f26..eda51a60 100644 --- a/packages/cli-plugin-lint/package.json +++ b/packages/cli-plugin-lint/package.json @@ -1,6 +1,6 @@ { "name": "@winfe/cli-plugin-lint", - "version": "1.1.0", + "version": "1.1.1", "main": "lib/index.js", "module": "src/index.js", "types": "lib/index.d.ts", @@ -26,7 +26,7 @@ "type": "ts,node" }, "dependencies": { - "@winfe/cli-core": "^1.1.0", + "@winfe/cli-core": "^1.1.1", "chalk": "^4.1.0", "command-exists": "^1.2.9", "cross-spawn": "^7.0.3", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 1e8cb778..2d03a32d 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.1.1 (2021-07-14) + +**Note:** Version bump only for package @winfe/winex-cli + + + + + # 1.1.0 (2021-07-08) **Note:** Version bump only for package @winfe/winex-cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 4c6e9c80..ff9c920e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@winfe/winex-cli", - "version": "1.1.0", + "version": "1.1.1", "bin": { "winex": "bin/winex.js" }, @@ -35,11 +35,11 @@ "dependencies": { "@sentry/node": "^6.7.2", "@sentry/tracing": "^6.7.2", - "@winfe/cli-core": "^1.1.0", - "@winfe/cli-plugin-add": "^1.1.0", - "@winfe/cli-plugin-fire": "^1.1.0", - "@winfe/cli-plugin-init": "^1.1.0", - "@winfe/cli-plugin-lint": "^1.1.0", + "@winfe/cli-core": "^1.1.1", + "@winfe/cli-plugin-add": "^1.1.1", + "@winfe/cli-plugin-fire": "^1.1.1", + "@winfe/cli-plugin-init": "^1.1.1", + "@winfe/cli-plugin-lint": "^1.1.1", "child_process": "^1.0.2", "ini": "^2.0.0" }, diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 744d83ea..f0808d4d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.1.1 (2021-07-14) + +**Note:** Version bump only for package @winfe/cli-core + + + + + # 1.1.0 (2021-07-08) **Note:** Version bump only for package @winfe/cli-core diff --git a/packages/core/package.json b/packages/core/package.json index e7fca3d3..b06aea1e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@winfe/cli-core", - "version": "1.1.0", + "version": "1.1.1", "main": "lib/index.js", "module": "src/index.js", "types": "lib/index.d.ts",