chore(cli): bump release-it v15 (#10773)

This commit is contained in:
neverland
2022-07-02 22:26:41 +08:00
committed by GitHub
parent 2f1066e9c6
commit eea5f002a7
9 changed files with 1126 additions and 1027 deletions

View File

@@ -85,7 +85,7 @@
"postcss": "^8.3.11",
"postcss-load-config": "^3.1.0",
"prettier": "^2.5.0",
"release-it": "^14.11.6",
"release-it": "^15.1.1",
"stylelint": "^13.0.0",
"transliteration": "^2.2.0",
"typescript": "^4.5.2",

View File

@@ -4,7 +4,7 @@ import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
const __dirname = dirname(fileURLToPath(import.meta.url));
const PLUGIN_PATH = join(__dirname, '../../cjs/vant-cli-release-plugin.cjs');
const PLUGIN_PATH = join(__dirname, '../compiler/vant-cli-release-plugin.js');
export async function release(command: { tag?: string }) {
await releaseIt({

View File

@@ -1,7 +1,7 @@
const releaseIt = require('release-it');
const { execSync } = require('child_process');
import { Plugin } from 'release-it';
import { execSync } from 'child_process';
class VantCliReleasePlugin extends releaseIt.Plugin {
class VantCliReleasePlugin extends Plugin {
async beforeRelease() {
// log an empty line
console.log('');
@@ -11,4 +11,4 @@ class VantCliReleasePlugin extends releaseIt.Plugin {
}
}
module.exports = VantCliReleasePlugin;
export default VantCliReleasePlugin;