Files
PackControl/node_modules/tmp-promise/publish.js
2026-01-15 21:52:12 +01: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');