mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-23 07:19:58 +08:00
10 lines
238 B
JavaScript
10 lines
238 B
JavaScript
var cli = require('ember-cli/lib/cli');
|
|
var path = require('path');
|
|
|
|
module.exports = function (options) {
|
|
options.cli = {
|
|
name: 'wrenchjs',
|
|
cliRoot: path.join(__dirname, '..', '..')
|
|
};
|
|
return cli(options);
|
|
}; |