您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678
  1. 'use strict';
  2. const { execSync } = require('child_process');
  3. const { version } = require('./package');
  4. execSync('npm run test');
  5. execSync(`git tag v${version}`);
  6. execSync('npm publish');