Skip to content

Commit

Permalink
Merge branch 'release/6.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dweber019 committed Nov 29, 2017
2 parents 94ea047 + 30799b1 commit 7900d04
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions package-scripts.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { series, crossEnv, concurrent, rimraf } = require('nps-utils');
const { series, crossEnv, concurrent, rimraf, ifWindows } = require('nps-utils');
const { config: { port: E2E_PORT } } = require('./test/protractor.conf');

module.exports = {
Expand Down Expand Up @@ -116,10 +116,16 @@ module.exports = {
),
},
cordova: {
prepare: 'cd ./cordova && ./../node_modules/.bin/cordova prepare',
build: 'cd ./cordova && ./../node_modules/.bin/cordova build',
prepare: ifWindows(
'cd .\\cordova && .\\..\\node_modules\\.bin\\cordova prepare',
'cd ./cordova && ./../node_modules/.bin/cordova prepare'
),
build: ifWindows(
'cd .\\cordova && .\\..\\node_modules\\.bin\\cordova build',
'cd ./cordova && ./../node_modules/.bin/cordova build'
),
clean: series(
rimraf('./cordova/plaforms'),
rimraf('./cordova/platforms'),
rimraf('./cordova/plugins')
)
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-typescript-boilerplate",
"version": "6.2.0",
"version": "6.3.0",
"title": "Aurelia Typescript Boilerplate",
"description": "A starter kit for building a standard navigation-style app with Aurelia and Webpack.",
"main": "dist/app.bundle.js",
Expand Down

0 comments on commit 7900d04

Please sign in to comment.