Skip to content

Commit 7a282db

Browse files
committed
chore(): CHANGELOG and package update for release beta30.
1 parent 1728ae0 commit 7a282db

3 files changed

Lines changed: 24 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
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
@@ -8,7 +17,7 @@
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
@@ -17,7 +26,7 @@
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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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/",

scripts/release.js

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
*/
17
var changelog = require('conventional-changelog');
28
var GithubApi = require('github');
39
var packageJSON = require('../package.json');
@@ -15,16 +21,16 @@ github.authenticate({
1521
return 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
});

0 commit comments

Comments
 (0)