build: publish v1.0.0-beta.24

This commit is contained in:
pengzhanbo 2022-04-25 15:46:19 +08:00
parent 28ba0b2897
commit 27bd8d31c0
4 changed files with 37 additions and 17 deletions

View File

@ -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

View File

@ -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"
}
}

View File

@ -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

View File

@ -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 <volodymyr@foxmail.com>",
"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 <volodymyr@foxmail.com>",
"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",