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.
123456789101112131415 |
- #! /usr/bin/env node
- 'use strict';
-
- const yarnOrNpm = require('../index');
- // Execute the command
- try {
- const status = yarnOrNpm.spawn.sync(
- process.argv.slice(2),
- { stdio: 'inherit' }
- ).status
- process.exit(status);
- } catch (err) {
- console.log(err);
- process.exit(1);
- }
|