File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <a name =" 2.0.0-beta.30 " ></a >
2+ # [ 2.0.0-beta.30] ( https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.29...v2.0.0-beta.30 ) (2016-06-06)
3+
4+
5+ ### Bug Fixes
6+ * ensure that the project base directory is passed to setupLiveReload. fixes [ #1034 ] ( https://github.com/driftyco/ionic-cli/issues/1034 ) ([ f36acef] ( https://github.com/driftyco/ionic-cli/commit/f36acef ) ), closes [ #1034 ] ( https://github.com/driftyco/ionic-cli/issues/1034 )
7+ * ensure when bower exec throws an error it is caught. fixes [ #1037 ] ( https://github.com/driftyco/ionic-cli/issues/1037 ) . ([ 53bcbbb] ( https://github.com/driftyco/ionic-cli/commit/53bcbbb ) ), closes [ #1037 ] ( https://github.com/driftyco/ionic-cli/issues/1037 )
8+
9+
110<a name =" 2.0.0-beta.29 " ></a >
2- # [ 2.0.0-beta.29] ( https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.25 ...v2.0.0-beta.29 ) (2016-06-02)
11+ # [ 2.0.0-beta.29] ( https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.28 ...v2.0.0-beta.29 ) (2016-06-02)
312
413
514### Bug Fixes
817
918
1019<a name =" 2.0.0-beta.28 " ></a >
11- # [ 2.0.0-beta.28] ( https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.25 ...v2.0.0-beta.28 ) (2016-06-02)
20+ # [ 2.0.0-beta.28] ( https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.27 ...v2.0.0-beta.28 ) (2016-06-02)
1221
1322
1423### Bug Fixes
1726
1827
1928<a name =" 2.0.0-beta.27 " ></a >
20- # [ 2.0.0-beta.27] ( https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.25 ...v2.0.0-beta.27 ) (2016-06-02)
29+ # [ 2.0.0-beta.27] ( https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.26 ...v2.0.0-beta.27 ) (2016-06-02)
2130
2231
2332### Bug Fixes
Original file line number Diff line number Diff line change 11{
22 "name" : " ionic" ,
3- "version" : " 2.0.0-beta.29 " ,
3+ "version" : " 2.0.0-beta.30 " ,
44 "preferGlobal" : true ,
55 "description" : " A tool for creating and developing Ionic Framework mobile apps." ,
66 "homepage" : " http://ionicframework.com/" ,
Original file line number Diff line number Diff line change 1+ /*
2+ * This script will create a new github release using the verion
3+ * specified from within the package.json file. The output from
4+ * the changelog command will be the body of the tag. The name
5+ * is the package.JSON.version
6+ */
17var changelog = require ( 'conventional-changelog' ) ;
28var GithubApi = require ( 'github' ) ;
39var packageJSON = require ( '../package.json' ) ;
@@ -15,16 +21,16 @@ github.authenticate({
1521return changelog ( {
1622 preset : 'angular'
1723} )
18- . pipe ( through . obj ( function ( file , enc , cb ) {
24+ . pipe ( through . obj ( function ( file ) {
1925 github . releases . createRelease ( {
2026 owner : 'driftyco' ,
2127 repo : 'ionic-cli' ,
22- target_commitish : 'v2' ,
23- tag_name : 'v' + packageJSON . version ,
28+ target_commitish : 'v2' , // eslint-disable-line camelcase
29+ tag_name : 'v' + packageJSON . version , // eslint-disable-line camelcase
2430 name : packageJSON . version ,
2531 body : file . toString ( ) ,
26- prerelease : true ,
27- } , function ( err , data ) {
32+ prerelease : true
33+ } , function ( err , data ) {
2834 if ( err ) console . log ( 'error: ' + err ) ;
2935 console . log ( data ) ;
3036 } ) ;
You can’t perform that action at this time.
0 commit comments