File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -96,12 +96,12 @@ module.exports = {
9696 ] ,
9797
9898 ionicBundleFiles : [
99- 'dist/ js/ionic.js' ,
100- 'dist/ js/angular/angular.js' ,
101- 'dist/ js/angular/angular-animate.js' ,
102- 'dist/ js/angular/angular-sanitize.js' ,
103- 'dist/ js/angular-ui/angular-ui-router.js' ,
104- 'dist/ js/ionic-angular.js'
99+ 'js/ionic.js' ,
100+ 'js/angular/angular.js' ,
101+ 'js/angular/angular-animate.js' ,
102+ 'js/angular/angular-sanitize.js' ,
103+ 'js/angular-ui/angular-ui-router.js' ,
104+ 'js/ionic-angular.js'
105105 ] ,
106106
107107 //Exclamation can be no longer than 14 chars
Original file line number Diff line number Diff line change @@ -116,7 +116,10 @@ gulp.task('bundle', [
116116 . pipe ( concat ( 'ionic.bundle.min.js' ) )
117117 . pipe ( gulp . dest ( buildConfig . dist + '/js' ) ) ;
118118
119- return gulp . src ( buildConfig . ionicBundleFiles )
119+ return gulp . src ( buildConfig . ionicBundleFiles , {
120+ base : buildConfig . dist ,
121+ cwd : buildConfig . dist
122+ } )
120123 . pipe ( header ( buildConfig . bundleBanner ) )
121124 . pipe ( concat ( 'ionic.bundle.js' ) )
122125 . pipe ( gulp . dest ( buildConfig . dist + '/js' ) ) ;
You can’t perform that action at this time.
0 commit comments