Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

Commit

Permalink
feature() update to 4.0.0-alpha.9
Browse files Browse the repository at this point in the history
  • Loading branch information
peterennis committed Jul 12, 2018
1 parent df9ab0f commit a1be296
Show file tree
Hide file tree
Showing 23 changed files with 1,488 additions and 1,363 deletions.
45 changes: 37 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
{
"$schema": "./node_modules/@angular-devkit/core/src/workspace/workspace-schema.json",
"version": 1,
"defaultProject": "app",
"projects": {
"app": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "app",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
Expand All @@ -22,9 +26,9 @@
"output": "assets"
},
{
"glob": "**/*",
"input": "node_modules/@ionic/angular/dist/ionic",
"output": "./ionic"
"glob": "**/*.svg",
"input": "node_modules/@ionic/angular/dist/ionic/svg",
"output": "./svg"
}
],
"styles": [
Expand All @@ -41,8 +45,8 @@
"production": {
"fileReplacements": [
{
"src": "src/environments/environment.ts",
"replaceWith": "src/environments/environment.prod.ts"
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
Expand Down Expand Up @@ -82,9 +86,7 @@
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
{
"input": "styles.css"
}
"styles.css"
],
"scripts": [],
"assets": [
Expand Down Expand Up @@ -112,6 +114,30 @@
"**/node_modules/**"
]
}
},
"ionic-cordova-build": {
"builder": "@ionic/ng-toolkit:cordova-build",
"options": {
"browserTarget": "app:build"
},
"configurations": {
"production": {
"browserTarget": "app:build:production"
}
}
},
"ionic-cordova-serve": {
"builder": "@ionic/ng-toolkit:cordova-serve",
"options": {
"cordovaBuildTarget": "app:ionic-cordova-build",
"devServerTarget": "app:serve"
},
"configurations": {
"production": {
"cordovaBuildTarget": "app:ionic-cordova-build:production",
"devServerTarget": "app:serve:production"
}
}
}
}
},
Expand All @@ -137,5 +163,8 @@
}
}
}
},
"cli": {
"defaultCollection": "@ionic/schematics-angular"
}
}
2 changes: 1 addition & 1 deletion e2e/src/app.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ export class AppPage {
}

getParagraphText() {
return element(by.css('app-root ion-content')).getText();
return element(by.deepCss('app-root ion-content')).getText();
}
}
8 changes: 3 additions & 5 deletions ionic.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"name": "aetabs",
"type": "angular",
"integrations": {
"cordova": {}
}
}
"integrations": {},
"type": "angular"
}
Loading

0 comments on commit a1be296

Please sign in to comment.