UNPKG
@delon/cli
Version:
latest (0.8.1)
next (1.0.0-beta.10)
1.0.1-alpha.2
1.0.0-beta.10
1.0.0-beta.9
1.0.0-beta.8
1.0.0-beta.7
1.0.0-beta.6
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
1.0.0-alpha.3
0.8.1
0.8.0
0.7.1
0.7.0
0.6.9
0.6.7
0.6.6
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.6.0-rc.3
0.6.0-rc.2
0.6.0-rc.1
0.6.0-rc.0
0.0.0-alpha.10
0.0.0-alpha.9
0.0.0-alpha.8
0.0.0-alpha.7
0.0.0-alpha.6
0.0.0-alpha.5
0.0.0-alpha.4
0.0.0-alpha.3
0.0.0-alpha.2
0.0.0-alpha.1
Schematics for ng-alain
github.com/cipchk/delon
cipchk/delon
@delon/cli
/
application
/
other-files
/
core
/
module-import-guard.ts
7 lines
(6 loc)
•
269 B
text/typescript
View Raw
1
2
3
4
5
6
7
// https://angular.io/guide/styleguide#style-04-12
export
function
throwIfAlreadyLoaded
(
parentModule
:
any
,
moduleName
:
string
) {
if
(parentModule) {
throw
new
Error
(
`
${moduleName}
has already been loaded. Import Core modules in the AppModule only.`
); } }