From 4fde2e2093c3c28ffe3764124eab0a3466e66a8b Mon Sep 17 00:00:00 2001 From: bclayton-usgs <bclayton@usgs.gov> Date: Thu, 28 Feb 2019 14:25:22 -0700 Subject: [PATCH] Rename nshmp-haz-web-apps -> nshmp-apps --- angular.json | 18 +++++++++--------- e2e/src/app.e2e-spec.ts | 2 +- package-lock.json | 2 +- package.json | 2 +- src/app/app.component.spec.ts | 6 +++--- src/app/app.component.ts | 2 +- src/karma.conf.js | 2 +- 7 files changed, 17 insertions(+), 17 deletions(-) diff --git a/angular.json b/angular.json index 56a9d1384..09fa31436 100644 --- a/angular.json +++ b/angular.json @@ -3,7 +3,7 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "nshmp-haz-web-apps": { + "nshmp-apps": { "root": "", "sourceRoot": "src", "projectType": "application", @@ -17,7 +17,7 @@ "build": { "builder": "@angular-devkit/build-angular:browser", "options": { - "outputPath": "dist/nshmp-haz-web-apps", + "outputPath": "dist/nshmp-apps", "index": "src/index.html", "main": "src/main.ts", "polyfills": "src/polyfills.ts", @@ -77,18 +77,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "nshmp-haz-web-apps:build" + "browserTarget": "nshmp-apps:build" }, "configurations": { "production": { - "browserTarget": "nshmp-haz-web-apps:build:production" + "browserTarget": "nshmp-apps:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "nshmp-haz-web-apps:build" + "browserTarget": "nshmp-apps:build" } }, "test": { @@ -122,7 +122,7 @@ } } }, - "nshmp-haz-web-apps-e2e": { + "nshmp-apps-e2e": { "root": "e2e/", "projectType": "application", "prefix": "", @@ -131,11 +131,11 @@ "builder": "@angular-devkit/build-angular:protractor", "options": { "protractorConfig": "e2e/protractor.conf.js", - "devServerTarget": "nshmp-haz-web-apps:serve" + "devServerTarget": "nshmp-apps:serve" }, "configurations": { "production": { - "devServerTarget": "nshmp-haz-web-apps:serve:production" + "devServerTarget": "nshmp-apps:serve:production" } } }, @@ -151,5 +151,5 @@ } } }, - "defaultProject": "nshmp-haz-web-apps" + "defaultProject": "nshmp-apps" } diff --git a/e2e/src/app.e2e-spec.ts b/e2e/src/app.e2e-spec.ts index cc01f226c..85f85ea87 100644 --- a/e2e/src/app.e2e-spec.ts +++ b/e2e/src/app.e2e-spec.ts @@ -10,7 +10,7 @@ describe('workspace-project App', () => { it('should display welcome message', () => { page.navigateTo(); - expect(page.getTitleText()).toEqual('Welcome to nshmp-haz-web-apps!'); + expect(page.getTitleText()).toEqual('Welcome to nshmp-apps!'); }); afterEach(async () => { diff --git a/package-lock.json b/package-lock.json index 92b4599c6..43a995590 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "nshmp-haz-web-apps", + "name": "nshmp-apps", "version": "0.0.0", "lockfileVersion": 1, "requires": true, diff --git a/package.json b/package.json index ba1104b1c..905949aa9 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "nshmp-haz-web-apps", + "name": "nshmp-apps", "version": "0.0.0", "scripts": { "ng": "ng", diff --git a/src/app/app.component.spec.ts b/src/app/app.component.spec.ts index 588d9a444..7dfe83137 100644 --- a/src/app/app.component.spec.ts +++ b/src/app/app.component.spec.ts @@ -20,16 +20,16 @@ describe('AppComponent', () => { expect(app).toBeTruthy(); }); - it(`should have as title 'nshmp-haz-web-apps'`, () => { + it(`should have as title 'nshmp-apps'`, () => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; - expect(app.title).toEqual('nshmp-haz-web-apps'); + expect(app.title).toEqual('nshmp-apps'); }); it('should render title in a h1 tag', () => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); const compiled = fixture.debugElement.nativeElement; - expect(compiled.querySelector('h1').textContent).toContain('Welcome to nshmp-haz-web-apps!'); + expect(compiled.querySelector('h1').textContent).toContain('Welcome to nshmp-apps!'); }); }); diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 5fd878d0d..97142ab7f 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -9,7 +9,7 @@ import { NavigationListService } from './shared/navigation-list.service'; styleUrls: ['./app.component.scss'] }) export class AppComponent implements OnInit { - title = 'nshmp-haz-web-apps'; + title = 'nshmp-apps'; navigationList: Navigation[]; diff --git a/src/karma.conf.js b/src/karma.conf.js index 20facf71e..dc9710cdf 100644 --- a/src/karma.conf.js +++ b/src/karma.conf.js @@ -16,7 +16,7 @@ module.exports = function (config) { clearContext: false // leave Jasmine Spec Runner output visible in browser }, coverageIstanbulReporter: { - dir: require('path').join(__dirname, '../coverage/nshmp-haz-web-apps'), + dir: require('path').join(__dirname, '../coverage/nshmp-apps'), reports: ['html', 'lcovonly', 'text-summary'], fixWebpackSourcePaths: true }, -- GitLab