Skip to content

Commit

Permalink
detalle de la raíz
Browse files Browse the repository at this point in the history
  • Loading branch information
Jajajaby committed Dec 9, 2018
1 parent 9d33fb9 commit 6a8e174
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ trim_trailing_whitespace = true
[*.md]
max_line_length = off
trim_trailing_whitespace = false




18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"aaa": {
"BOOKscalo": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
Expand All @@ -13,7 +13,7 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/aaa",
"outputPath": "dist/BOOKscalo",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
Expand Down Expand Up @@ -50,18 +50,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "aaa:build"
"browserTarget": "BOOKscalo:build"
},
"configurations": {
"production": {
"browserTarget": "aaa:build:production"
"browserTarget": "BOOKscalo:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "aaa:build"
"browserTarget": "BOOKscalo:build"
}
},
"test": {
Expand Down Expand Up @@ -95,19 +95,19 @@
}
}
},
"aaa-e2e": {
"BOOKscalo-e2e": {
"root": "e2e/",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "aaa:serve"
"devServerTarget": "BOOKscalo:serve"
},
"configurations": {
"production": {
"devServerTarget": "aaa:serve:production"
"devServerTarget": "BOOKscalo:serve:production"
}
}
},
Expand All @@ -123,5 +123,5 @@
}
}
},
"defaultProject": "aaa"
"defaultProject": "BOOKscalo"
}
3 changes: 2 additions & 1 deletion e2e/protractor.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ exports.config = {
});
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
}
};
};

2 changes: 1 addition & 1 deletion e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ describe('workspace-project App', () => {

it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to aaa!');
expect(page.getParagraphText()).toEqual('Welcome to BOOKscalo!');
});
});
3 changes: 3 additions & 0 deletions e2e/src/app.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ export class AppPage {
return element(by.css('app-root h1')).getText();
}
}



2 changes: 1 addition & 1 deletion e2e/tsconfig.e2e.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"types": [
"jasmine",
"jasminewd2",
"node"
"node",
]
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"lib": [
"es2017",
"dom"
"dom",
]
}
}

0 comments on commit 6a8e174

Please sign in to comment.