Skip to content

Commit 25ec23a

Browse files
committed
fix(core): removed ng-package.prod.json as it is no longer needed by nx
1 parent 854df6b commit 25ec23a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+16
-166
lines changed

PLAYBOOK.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ npm i moment ngx-moment
134134
npm i @angular/material-moment-adapter
135135

136136
# Add Flex-Layout
137-
npm i @angular/flex-layout@next
137+
npm i @angular/flex-layout
138138
# Add in-memory-web-api
139139
npm i angular-in-memory-web-api
140140
# Add oauth2-oidc
@@ -170,7 +170,7 @@ npm i -D @nestjs/testing
170170
npm i -D lite-server
171171

172172
# Add miscellaneous
173-
npm i ngx-perfect-scrollbar smooth-scrollbar ngx-page-scroll screenfull immutable
173+
npm i ngx-perfect-scrollbar smooth-scrollbar ngx-page-scroll screenfull
174174

175175
# Add Dev Tools
176176
npm i -D standard-version
@@ -245,7 +245,7 @@ ng g service services/DeepLink --project=core --dry-run
245245
ng g service services/Feature --project=core --dry-run
246246

247247
# `material` module to encapulate material libs which is impoted into any `Lazy-loaded Feature Modules` that need material components
248-
ng g lib material --spec=false --tags=shared-module --unit-test-runner=jest --dry-run
248+
ng g lib material --prefix=ngx --spec=false --tags=shared-module --unit-test-runner=jest --dry-run
249249

250250
# add `shared` module which will encapsulate angular and 3rd party modules, needed for all `Lazy-loaded Feature Modules`
251251
ng g lib shared --prefix=ngx --tags=shared-module --unit-test-runner=jest
@@ -302,7 +302,7 @@ ng g class notification --type=model --project=notifications --dry-run
302302
ng g service notifications --project=notifications --dry-run
303303

304304
# generate components for `Quickpanel` Module
305-
ng g lib Quickpanel1 --prefix=ngx --tags=private-module --unit-test-runner=jest
305+
ng g lib Quickpanel --prefix=ngx --tags=private-module --unit-test-runner=jest
306306
ng g component Quickpanel --project=quickpanel --flat --dry-run
307307

308308
# generate components for `LoadingOverlay` Module

angular.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
"root": "apps/api",
228228
"sourceRoot": "apps/api/src",
229229
"projectType": "application",
230-
"prefix": "api",
230+
"prefix": "ngx",
231231
"schematics": {},
232232
"architect": {
233233
"build": {
@@ -306,7 +306,7 @@
306306
"root": "apps/backend",
307307
"sourceRoot": "apps/backend/src",
308308
"projectType": "application",
309-
"prefix": "backend",
309+
"prefix": "ngx",
310310
"schematics": {},
311311
"architect": {
312312
"build": {
@@ -360,7 +360,7 @@
360360
"root": "libs/models",
361361
"sourceRoot": "libs/models/src",
362362
"projectType": "library",
363-
"prefix": "ngx-starter-kit",
363+
"prefix": "ngx",
364364
"architect": {
365365
"lint": {
366366
"builder": "@angular-devkit/build-angular:tslint",

apps/webapp/src/assets/.gitkeep

Whitespace-only changes.

apps/webapp/src/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
</div>
2727
</div>
2828
</app-root>
29+
<noscript>Please enable JavaScript to continue using this application.</noscript>
2930
<script>
3031
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
3132
ga('create', 'UA-38731590-2', 'auto');

libs/animations/src/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/*
2-
* Public API Surface of mylib
3-
*/
41
export { Animations } from './lib/animations';
52
export * from './lib/card.animation';
63
export * from './lib/expand.animation';

libs/app-confirm/ng-package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
33
"dest": "../../dist/libs/app-confirm",
4-
"deleteDestPath": false,
54
"lib": {
65
"entryFile": "src/index.ts"
76
}

libs/app-confirm/ng-package.prod.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

libs/app-confirm/src/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
/*
2-
* Public API Surface of mylib
3-
*/
41
export { AppConfirmModule } from './lib/app-confirm.module';
52
export { AppConfirmService } from './lib/app-confirm.service';

libs/breadcrumbs/ng-package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
33
"dest": "../../dist/libs/breadcrumbs",
4-
"deleteDestPath": false,
54
"lib": {
65
"entryFile": "src/index.ts"
76
}

libs/breadcrumbs/ng-package.prod.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)