Skip to content

Commit b5a03ca

Browse files
committed
package-json sorted, some unused refs removed, etc
1 parent 03852c0 commit b5a03ca

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

angular/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
{
22
"name": "AbpProjectName",
33
"version": "4.7.1",
4+
"private": true,
45
"license": "MIT",
5-
"angular-cli": {},
66
"scripts": {
7-
"ng": "ng",
8-
"start": "ng serve --host 0.0.0.0 --port 4200",
9-
"hmr": "ng serve --host 0.0.0.0 --port 4200 --hmr",
10-
"test": "ng test",
117
"pree2e": "webdriver-manager update --standalone false --gecko false",
128
"e2e": "protractor",
13-
"lint": "tslint --force --project src/tsconfig.json src/**/*.ts -t verbose"
9+
"hmr": "ng serve --host 0.0.0.0 --port 4200 --hmr",
10+
"lint": "tslint --force --project src/tsconfig.json src/**/*.ts -t verbose",
11+
"ng": "ng",
12+
"start": "ng serve --host 0.0.0.0 --port 4200",
13+
"test": "ng test"
1414
},
15-
"private": true,
1615
"dependencies": {
1716
"@angular/animations": "^8.2.4",
1817
"@angular/common": "^8.2.4",
@@ -71,5 +70,6 @@
7170
"tslint": "^5.19.0",
7271
"typescript": "3.4.5",
7372
"webpack-bundle-analyzer": "^3.0.3"
74-
}
73+
},
74+
"angular-cli": {}
7575
}

angular/src/app/users/users.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ <h1>{{ "Users" | localize }}</h1>
185185
>
186186
<i class="fas fa-ellipsis-h"></i>
187187
</button>
188-
<ul *dropdownMenu class="dropdown-menu dropdown-menu-right">
188+
<ul *dropdownMenu class="dropdown-menu">
189189
<li role="menuitem">
190190
<a
191191
class="dropdown-item"

angular/src/main.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2-
import { enableProdMode, ChangeDetectorRef } from '@angular/core';
2+
import { enableProdMode } from '@angular/core';
33
import { environment } from './environments/environment';
44
import { RootModule } from './root.module';
55
import { hmrBootstrap } from './hmr';
66

7-
import * as moment from 'moment';
8-
97
import 'moment/min/locales.min';
108
import 'moment-timezone';
119

angular/src/root.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { BrowserModule } from '@angular/platform-browser';
2-
import { BrowserAnimationsModule, NoopAnimationsModule } from '@angular/platform-browser/animations';
2+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
33
import { NgModule, Injector, APP_INITIALIZER, LOCALE_ID } from '@angular/core';
44
import { PlatformLocation, registerLocaleData } from '@angular/common';
55

0 commit comments

Comments
 (0)