Files
Remote-Control-Center/mc_test/node_modules/tmp-promise/publish.js
2025-11-25 09:56:15 +03:00

8 lines
188 B
JavaScript
Executable File

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