minishouyin/node_modules/tmp-promise/publish.js

8 lines
188 B
JavaScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
'use strict';
const { execSync } = require('child_process');
const { version } = require('./package');
execSync('npm run test');
execSync(`git tag v${version}`);
execSync('npm publish');