UNPKG
brush_cli
Version:
latest (0.0.2)
0.0.2
0.0.1
A tool for creating and developing cmos PC Framework project.
brush_cli
/
spec
/
helpers
/
ionic.js
20 lines
(16 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict'
;
var
cli =
require
(
'../../lib/cli'
);
/* * args * [0] = node * [1] = brush * [2] = command * */
module
.
exports
=
function
ionic
(
ionicArgs
) {
var
cliArgs = [
'node'
,
'bin/brush'
];
return
cli.
run
(cliArgs.
concat
(ionicArgs)); };