Files
aza/APP/nexus-remote/node_modules/tmp-promise/publish.js

8 lines
188 B
JavaScript
Raw Normal View History

2026-03-25 14:14:07 +01:00
'use strict';
const { execSync } = require('child_process');
const { version } = require('./package');
execSync('npm run test');
execSync(`git tag v${version}`);
execSync('npm publish');