Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Tools glue
ng-ebi-authorization
Commits
169fbc9f
Commit
169fbc9f
authored
May 04, 2018
by
Eduardo Sanz García
Browse files
WIP: update to version 6.0.0
parent
b0147083
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
2248 additions
and
158 deletions
+2248
-158
.angular-cli.json
.angular-cli.json
+0
-66
angular.json
angular.json
+132
-0
karma.conf.js
karma.conf.js
+3
-3
package.json
package.json
+3
-2
src/tsconfig.spec.json
src/tsconfig.spec.json
+2
-1
tslint.json
tslint.json
+0
-1
yarn.lock
yarn.lock
+2108
-85
No files found.
.angular-cli.json
deleted
100644 → 0
View file @
b0147083
{
"$schema"
:
"./node_modules/@angular/cli/lib/config/schema.json"
,
"project"
:
{
"name"
:
"angular-aap-auth"
},
"apps"
:
[
{
"root"
:
"src"
,
"outDir"
:
"dist"
,
"assets"
:
[
"assets"
,
"favicon.ico"
],
"index"
:
"index.html"
,
"main"
:
"main.ts"
,
"polyfills"
:
"polyfills.ts"
,
"test"
:
"test.ts"
,
"tsconfig"
:
"tsconfig.app.json"
,
"testTsconfig"
:
"tsconfig.spec.json"
,
"prefix"
:
"app"
,
"styles"
:
[
"styles.css"
],
"scripts"
:
[],
"environmentSource"
:
"environments/environment.ts"
,
"environments"
:
{
"dev"
:
"environments/environment.ts"
,
"prod"
:
"environments/environment.prod.ts"
}
}
],
"e2e"
:
{
"protractor"
:
{
"config"
:
"./protractor.conf.js"
}
},
"lint"
:
[
{
"project"
:
"src/tsconfig.app.json"
,
"exclude"
:
[
"**/node_modules/**"
]
},
{
"project"
:
"src/tsconfig.spec.json"
,
"exclude"
:
[
"**/node_modules/**"
]
},
{
"project"
:
"e2e/tsconfig.e2e.json"
,
"exclude"
:
[
"**/node_modules/**"
]
}
],
"test"
:
{
"karma"
:
{
"config"
:
"./karma.conf.js"
}
},
"defaults"
:
{
"styleExt"
:
"css"
,
"component"
:
{}
}
}
angular.json
0 → 100644
View file @
169fbc9f
{
"$schema"
:
"./node_modules/@angular/cli/lib/config/schema.json"
,
"version"
:
1
,
"newProjectRoot"
:
"projects"
,
"projects"
:
{
"angular-aap-auth"
:
{
"root"
:
""
,
"sourceRoot"
:
"src"
,
"projectType"
:
"application"
,
"architect"
:
{
"build"
:
{
"builder"
:
"@angular-devkit/build-angular:browser"
,
"options"
:
{
"outputPath"
:
"dist"
,
"index"
:
"src/index.html"
,
"main"
:
"src/main.ts"
,
"tsConfig"
:
"src/tsconfig.app.json"
,
"polyfills"
:
"src/polyfills.ts"
,
"assets"
:
[
"src/assets"
,
"src/favicon.ico"
],
"styles"
:
[
"src/styles.css"
],
"scripts"
:
[]
},
"configurations"
:
{
"production"
:
{
"optimization"
:
true
,
"outputHashing"
:
"all"
,
"sourceMap"
:
false
,
"extractCss"
:
true
,
"namedChunks"
:
false
,
"aot"
:
true
,
"extractLicenses"
:
true
,
"vendorChunk"
:
false
,
"buildOptimizer"
:
true
,
"fileReplacements"
:
[
{
"replace"
:
"src/environments/environment.ts"
,
"with"
:
"src/environments/environment.prod.ts"
}
]
}
}
},
"serve"
:
{
"builder"
:
"@angular-devkit/build-angular:dev-server"
,
"options"
:
{
"browserTarget"
:
"angular-aap-auth:build"
},
"configurations"
:
{
"production"
:
{
"browserTarget"
:
"angular-aap-auth:build:production"
}
}
},
"extract-i18n"
:
{
"builder"
:
"@angular-devkit/build-angular:extract-i18n"
,
"options"
:
{
"browserTarget"
:
"angular-aap-auth:build"
}
},
"test"
:
{
"builder"
:
"@angular-devkit/build-angular:karma"
,
"options"
:
{
"main"
:
"src/test.ts"
,
"karmaConfig"
:
"./karma.conf.js"
,
"polyfills"
:
"src/polyfills.ts"
,
"tsConfig"
:
"src/tsconfig.spec.json"
,
"scripts"
:
[],
"styles"
:
[
"src/styles.css"
],
"assets"
:
[
"src/assets"
,
"src/favicon.ico"
]
}
},
"lint"
:
{
"builder"
:
"@angular-devkit/build-angular:tslint"
,
"options"
:
{
"tsConfig"
:
[
"src/tsconfig.app.json"
,
"src/tsconfig.spec.json"
],
"exclude"
:
[
"**/node_modules/**"
]
}
}
}
},
"angular-aap-auth-e2e"
:
{
"root"
:
""
,
"sourceRoot"
:
""
,
"projectType"
:
"application"
,
"architect"
:
{
"e2e"
:
{
"builder"
:
"@angular-devkit/build-angular:protractor"
,
"options"
:
{
"protractorConfig"
:
"./protractor.conf.js"
,
"devServerTarget"
:
"angular-aap-auth:serve"
}
},
"lint"
:
{
"builder"
:
"@angular-devkit/build-angular:tslint"
,
"options"
:
{
"tsConfig"
:
[
"e2e/tsconfig.e2e.json"
],
"exclude"
:
[
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject"
:
"angular-aap-auth"
,
"schematics"
:
{
"@schematics/angular:component"
:
{
"prefix"
:
"app"
,
"styleext"
:
"css"
},
"@schematics/angular:directive"
:
{
"prefix"
:
"app"
}
}
}
\ No newline at end of file
karma.conf.js
View file @
169fbc9f
...
...
@@ -6,18 +6,18 @@
module
.
exports
=
function
(
config
)
{
config
.
set
({
basePath
:
''
,
frameworks
:
[
'
jasmine
'
,
'
@angular
/cli
'
],
frameworks
:
[
'
jasmine
'
,
'
@angular
-devkit/build-angular
'
],
plugins
:
[
require
(
'
karma-jasmine
'
),
require
(
'
karma-chrome-launcher
'
),
require
(
'
karma-coverage-istanbul-reporter
'
),
require
(
'
@angular
/cli
/plugins/karma
'
)
require
(
'
@angular
-devkit/build-angular
/plugins/karma
'
)
],
client
:{
clearContext
:
false
// leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter
:
{
reports
:
[
'
text-summary
'
,
'
text
'
,
'
html
'
,
'
lcovonly
'
],
dir
:
require
(
'
path
'
).
join
(
__dirname
,
'
coverage
'
),
reports
:
[
'
text-summary
'
,
'
text
'
,
'
html
'
,
'
lcovonly
'
],
fixWebpackSourcePaths
:
true
},
angularCli
:
{
...
...
package.json
View file @
169fbc9f
...
...
@@ -69,6 +69,7 @@
"
tslint
"
:
"
~5.9.1
"
,
"
typedoc
"
:
"
^0.11.1
"
,
"
typescript
"
:
"
2.7.2
"
,
"
zone.js
"
:
"
^0.8.26
"
}
"
zone.js
"
:
"
^0.8.26
"
,
"
@angular-devkit/build-angular
"
:
"
~0.6.0
"
}
}
src/tsconfig.spec.json
View file @
169fbc9f
...
...
@@ -10,7 +10,8 @@
]
},
"files"
:
[
"test.ts"
"test.ts"
,
"polyfills.ts"
],
"include"
:
[
"**/*.spec.ts"
,
...
...
tslint.json
View file @
169fbc9f
...
...
@@ -21,7 +21,6 @@
"forin"
:
true
,
"import-blacklist"
:
[
true
,
"rxjs"
,
"rxjs/Rx"
],
"import-spacing"
:
true
,
...
...
yarn.lock
View file @
169fbc9f
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment