Skip to content

Commit 89184c4

Browse files
committed
removed build process, defaulting to curl'ing from git
1 parent 2556de7 commit 89184c4

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

gulpfile.js

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,6 @@ gulp.task( 'init', function()
2929
.pipe( rimraf( { force: true } ) );
3030
} )
3131

32-
gulp.task( 'build-bootstrap', function()
33-
{
34-
return gulp.src( '' )
35-
.pipe( exec( 'napa angular-ui/bootstrap' + ver + ':_tmp && ' + //use napa to pull from git and store into our app, we could bypass napa and just go git
36-
'cd ./node_modules/_tmp && ' +
37-
'npm install && ' + //install deps to build the distros
38-
'grunt --force' ) ) //force the build in case they don't have an env var for CHROME_BIN
39-
} )
40-
4132
gulp.task( 'curl', function()
4233
{
4334
src = src || './tmp'
@@ -85,6 +76,5 @@ gulp.task( 'clean', function()
8576
// DEFAULT
8677
///////////////////////
8778

88-
gulp.task( 'default', function() { seq( 'init', 'build-bootstrap', 'package', 'rename', 'clean' ); } )
8979

90-
gulp.task( 'manual', function() { seq( 'init', 'curl', 'package', 'rename', 'clean' );} )
80+
gulp.task( 'default', function() { seq( 'init', 'curl', 'package', 'rename', 'clean' );} )

0 commit comments

Comments
 (0)