Skip to content

Commit 3a6466d

Browse files
Oleksandr KhymenkoOleksandr Khymenko
authored andcommitted
Fix publishing of repository
1 parent 067b169 commit 3a6466d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"docs:build": "compodoc -p tsconfig.json -n ngx-permissions -d docs --hideGenerator",
1414
"docs:serve": "npm run docs:build -- -s",
1515
"docs:watch": "npm run docs:build -- -s -w",
16-
"rep:publish": "npm run build && npm publish dist",
16+
"rep:publish": "npm run build && npm publish dist/ngx-permissions",
1717
"codecov": "cat coverage/lcovonly/lcov.info | codecov"
1818
},
19-
"private": true,
19+
"private": false,
2020
"dependencies": {
2121
"@angular/common": ">=6.0.0 || <7.0.0",
2222
"@angular/core": ">=6.0.0 || <7.0.0",

src/app/app-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const appRoutes: Routes = [
105105
}
106106
},
107107
canLoad: [NgxPermissionsGuard],
108-
loadChildren: 'app/lazy-module/lazy-module.module#LazyModule'
108+
loadChildren: './lazy-module/lazy-module.module#LazyModule'
109109
},
110110
{ path: 'lazy-isolate', loadChildren: './lazy-isolate/lazy-isolate.module#LazyIsolateModule' },
111111
{ path: 'lazy-roles-isolate', loadChildren: './lazy-role-isolate/lazy-role-isolate.module#LazyRoleIsolateModule' },

0 commit comments

Comments
 (0)