diff --git a/CHANGELOG.md b/CHANGELOG.md index c79ed0d3..01b75403 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.0.0-beta.24](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-beta.23...v1.0.0-beta.24) (2022-04-25) + + +### Features + +* 主题配置函数 ([844feea](https://github.com/pengzhanbo/vuepress-theme-plume/commit/844feeae7406f5aee8edef35bce4a08e808f692e)) + + + + + # [1.0.0-beta.23](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-beta.22...v1.0.0-beta.23) (2022-04-23) **Note:** Version bump only for package vuepress-theme-plume diff --git a/lerna.json b/lerna.json index fd493e83..8a5d51dd 100644 --- a/lerna.json +++ b/lerna.json @@ -1,15 +1,13 @@ { "useWorkspaces": true, "npmClient": "yarn", - "version": "1.0.0-beta.23", + "version": "1.0.0-beta.24", "command": { "version": { "allowBranch": "main", "conventionalCommits": true, "exact": true, - "ignoreChanges": [ - "**/*.md" - ], + "ignoreChanges": ["**/*.md"], "message": "build: publish %s" } } diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md index 1612c96f..b640e0b2 100644 --- a/packages/theme/CHANGELOG.md +++ b/packages/theme/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.0.0-beta.24](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-beta.23...v1.0.0-beta.24) (2022-04-25) + + +### Features + +* 主题配置函数 ([844feea](https://github.com/pengzhanbo/vuepress-theme-plume/commit/844feeae7406f5aee8edef35bce4a08e808f692e)) + + + + + # [1.0.0-beta.23](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-beta.22...v1.0.0-beta.23) (2022-04-23) **Note:** Version bump only for package @vuepress-plume/vuepress-theme-plume diff --git a/packages/theme/package.json b/packages/theme/package.json index 79cfd351..f79105b5 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -1,30 +1,30 @@ { "name": "@vuepress-plume/vuepress-theme-plume", - "version": "1.0.0-beta.23", + "version": "1.0.0-beta.24", "description": "A Blog Theme for VuePress 2.0", - "author": "pengzhanbo ", "homepage": "https://github.com/pengzhanbo/vuepress-theme-plume#readme", + "bugs": { + "url": "https://github.com/pengzhanbo/vuepress-theme-plume/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/pengzhanbo/vuepress-theme-plume.git" + }, "license": "MIT", + "author": "pengzhanbo ", "main": "lib/node/index.js", "files": [ "lib", "template" ], - "repository": { - "type": "git", - "url": "git+https://github.com/pengzhanbo/vuepress-theme-plume.git" - }, - "bugs": { - "url": "https://github.com/pengzhanbo/vuepress-theme-plume/issues" - }, "scripts": { + "build": "yarn clean && yarn copy && yarn ts", + "clean": "rimraf lib *.tsbuildinfo", "copy": "cpx \"src/**/*.{d.ts,vue,css,scss,jpg,png}\" lib", "copy:watch": "yarn copy -w", - "ts": "tsc -b tsconfig.build.json", - "ts:watch": "tsc -b tsconfig.build.json --watch", - "clean": "rimraf lib *.tsbuildinfo", "dev": "concurrently \"yarn copy:watch\" \"yarn ts:watch\"", - "build": "yarn clean && yarn copy && yarn ts" + "ts": "tsc -b tsconfig.build.json", + "ts:watch": "tsc -b tsconfig.build.json --watch" }, "dependencies": { "@types/lodash.merge": "^4.6.6",