Skip to content

Commit 3505ce8

Browse files
committed
Corrected an issue with the help command related to run configuration.
1 parent 6c7a040 commit 3505ce8

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
<a name="2.0.0-beta.26"></a>
2+
# [2.0.0-beta.26](https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.25...v2.0.0-beta.26) (2016-06-01)
3+
4+
5+
### Bug Fixes
6+
* **tests:** add tests to cover cli tasks and utilities. ([6c7a040](https://github.com/driftyco/ionic-cli/commit/6c7a040))
7+
* **eslint:** add parseInt to all request response checks because type coersion was removed. ([5e283ce](https://github.com/driftyco/ionic-cli/commit/5e283ce))
8+
* **login:** correct email regex that was split to change decrease line length. ([2dbd92c](https://github.com/driftyco/ionic-cli/commit/2dbd92c))
9+
* **serve:** remove unused lab preview template ([a100e8b](https://github.com/driftyco/ionic-cli/commit/a100e8b))
10+
* **share:** use app-lib project utility ([6317e76](https://github.com/driftyco/ionic-cli/commit/6317e76))
11+
* **store:** don't error if config isn't found ([cd72553](https://github.com/driftyco/ionic-cli/commit/cd72553))
12+
13+
114
<a name="2.0.0-beta.25"></a>
215
# [2.0.0-beta.25](https://github.com/driftyco/ionic-cli/compare/v2.0.0-beta.24...v2.0.0-beta.25) (2016-04-20)
316

lib/ionic/browser.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ var settings = {
1717
boolean: true
1818
}
1919
},
20-
module: './ionic/browser',
2120
isProjectTask: true
2221
};
2322

lib/ionic/run.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ var cordovaRunEmulateOptions = {
2424
title: '',
2525
boolean: true
2626
},
27-
'--device|--emulator|--target=FOO': '',
28-
isProjectTask: true
27+
'--device|--emulator|--target=FOO': ''
2928
};
3029

3130
var settings = {
@@ -36,7 +35,8 @@ var settings = {
3635
'[options]': '',
3736
'<PLATFORM>': ''
3837
},
39-
options: cordovaRunEmulateOptions
38+
options: cordovaRunEmulateOptions,
39+
isProjectTask: true
4040
};
4141

4242
function run(ionic, argv, rawCliArguments) {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ionic",
3-
"version": "2.0.0-beta.25",
3+
"version": "2.0.0-beta.26",
44
"preferGlobal": true,
55
"description": "A tool for creating and developing Ionic Framework mobile apps.",
66
"homepage": "http://ionicframework.com/",
@@ -67,7 +67,7 @@
6767
"gulp": "3.8.8",
6868
"gulp-util": "3.0.7",
6969
"inquirer": "0.11.2",
70-
"ionic-app-lib": "2.0.0-beta.15",
70+
"ionic-app-lib": "2.0.0-beta.16",
7171
"moment": "2.11.1",
7272
"open": "0.0.5",
7373
"optimist": "0.6.0",

0 commit comments

Comments
 (0)