You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

publish.js 188B

12345678
  1. 'use strict';
  2. const { execSync } = require('child_process');
  3. const { version } = require('./package');
  4. execSync('npm run test');
  5. execSync(`git tag v${version}`);
  6. execSync('npm publish');