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.
9 lines
291 B
9 lines
291 B
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
// Have to force color support — logs wouldn't have colors when spawned by another process.
|
|
// It must be set before `supports-color` (`chalk` dependency) module is imported.
|
|
process.env.FORCE_COLOR = 'true';
|
|
|
|
require('../build')(process.argv.slice(2));
|