vite-plugin-update-version
v1.0.9
Published
自动更新package.json里的version版本号
Downloads
10
Readme
vite-plugin-update-version
自动更新package.json里的version版本号
Automatic update version patch in package.json
用法:
usage:
npm install -D vite-plugin-update-version
import { updateVersion } from "vite-plugin-update-version";
import { fileURLToPath } from 'url'
const __filenameNew = fileURLToPath(import.meta.url)
const __dirnameNew = path.dirname(__filenameNew)
plugins: [
/**
\* @description: 更新package.json的版本信息, apply: 'build'打包时才调用
\* @return {*}
*/
{
...updateVersion(__dirnameNew),
apply: 'build',
}]