Files
2025-10-11 10:47:07 +08:00

8 lines
188 B
JavaScript

'use strict';
const { execSync } = require('child_process');
const { version } = require('./package');
execSync('npm run test');
execSync(`git tag v${version}`);
execSync('npm publish');