-
Notifications
You must be signed in to change notification settings - Fork 8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(angular-cli): integrate angular-cli (#989)
- Loading branch information
Showing
138 changed files
with
4,219 additions
and
6,882 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"project": { | ||
"name": "ng2-admin-cli" | ||
}, | ||
"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": [ | ||
"../node_modules/bootstrap/scss/bootstrap.scss", | ||
"../node_modules/roboto-fontface/css/roboto/sass/roboto-fontface.scss", | ||
"../node_modules/normalize.css/normalize.css", | ||
"../node_modules/font-awesome/scss/font-awesome.scss", | ||
"../node_modules/ionicons/scss/ionicons.scss", | ||
"../node_modules/leaflet/dist/leaflet.css", | ||
"../node_modules/chartist/dist/chartist.css", | ||
"../node_modules/fullcalendar/dist/fullcalendar.css", | ||
"app/theme/initial.scss", | ||
"app/theme/theme.scss", | ||
"styles.scss" | ||
], | ||
"scripts": [ | ||
"../node_modules/jquery/dist/jquery.js", | ||
"../node_modules/tether/dist/js/tether.js", | ||
"../node_modules/easy-pie-chart/dist/jquery.easypiechart.js" | ||
], | ||
"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" | ||
}, | ||
{ | ||
"project": "src/tsconfig.spec.json" | ||
}, | ||
{ | ||
"project": "e2e/tsconfig.e2e.json" | ||
} | ||
], | ||
"test": { | ||
"karma": { | ||
"config": "./karma.conf.js" | ||
} | ||
}, | ||
"defaults": { | ||
"styleExt": "scss", | ||
"component": { | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
# http://editorconfig.org | ||
|
||
# Editor configuration, see http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
insert_final_newline = false | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,42 @@ | ||
# Logs | ||
logs | ||
*.log | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
# compiled output | ||
/dist | ||
/tmp | ||
/out-tsc | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
# dependencies | ||
/node_modules | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
# IDEs and editors | ||
/.idea | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
|
||
# IDE - VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
|
||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
/libpeerconnection.log | ||
npm-debug.log | ||
testem.log | ||
/typings | ||
|
||
# Users Environment Variables | ||
.lock-wscript | ||
# e2e | ||
/e2e/*.js | ||
/e2e/*.map | ||
|
||
# OS generated files # | ||
# System Files | ||
.DS_Store | ||
ehthumbs.db | ||
Icon? | ||
Thumbs.db | ||
|
||
# Node Files # | ||
/node_modules | ||
/bower_components | ||
npm-debug.log | ||
|
||
# Coverage # | ||
/coverage/ | ||
|
||
# Typing # | ||
/src/typings/tsd/ | ||
/typings/ | ||
/tsd_typings/ | ||
|
||
# Dist # | ||
/dist | ||
/public/__build__/ | ||
/src/*/__build__/ | ||
/__build__/** | ||
/public/dist/ | ||
/src/*/dist/ | ||
/dist/** | ||
.webpack.json | ||
/build | ||
/build/** | ||
/compiled | ||
/dll | ||
|
||
# Doc # | ||
/doc/ | ||
|
||
# IDE # | ||
.idea/ | ||
*.swp | ||
|
||
# Angular # | ||
*.ngfactory.ts | ||
*.css.shim.ts | ||
*.ngsummary.json | ||
*.shim.ngstyle.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"rules": { | ||
"color-hex-case": "lower", | ||
"color-no-invalid-hex": true, | ||
|
||
"function-calc-no-unspaced-operator": true, | ||
"function-comma-space-after": "always-single-line", | ||
"function-comma-space-before": "never", | ||
"function-name-case": "lower", | ||
"function-url-quotes": "always", | ||
"function-whitespace-after": "always", | ||
|
||
"number-leading-zero": "always", | ||
"number-no-trailing-zeros": true, | ||
"length-zero-no-unit": true, | ||
|
||
"string-no-newline": true, | ||
"string-quotes": "single", | ||
|
||
"unit-case": "lower", | ||
"unit-no-unknown": true, | ||
"unit-whitelist": ["px", "%", "deg", "ms", "em", "vh", "vw", "s", "rem"], | ||
|
||
"value-list-comma-space-after": "always-single-line", | ||
"value-list-comma-space-before": "never", | ||
|
||
"property-case": "lower", | ||
|
||
"declaration-block-no-duplicate-properties": [ true, { | ||
"ignore": ["consecutive-duplicates-with-different-values"] | ||
}], | ||
"declaration-block-trailing-semicolon": "always", | ||
"declaration-block-single-line-max-declarations": 1, | ||
"declaration-block-semicolon-space-before": "never", | ||
"declaration-block-semicolon-space-after": "always-single-line", | ||
"declaration-block-semicolon-newline-before": "never-multi-line", | ||
"declaration-block-semicolon-newline-after": "always-multi-line", | ||
|
||
"block-closing-brace-newline-after": [ | ||
"always", | ||
{ | ||
"ignoreAtRules": ["if", "else"] | ||
} | ||
], | ||
"block-closing-brace-newline-before": "always-multi-line", | ||
"block-opening-brace-newline-after": "always-multi-line", | ||
"block-opening-brace-space-before": "always-multi-line", | ||
|
||
"selector-attribute-brackets-space-inside": "never", | ||
"selector-attribute-operator-space-after": "never", | ||
"selector-attribute-operator-space-before": "never", | ||
"selector-combinator-space-after": "always", | ||
"selector-combinator-space-before": "always", | ||
"selector-pseudo-class-case": "lower", | ||
"selector-pseudo-class-parentheses-space-inside": "never", | ||
"selector-pseudo-element-case": "lower", | ||
"selector-pseudo-element-colon-notation": "double", | ||
"selector-pseudo-element-no-unknown": true, | ||
"selector-type-case": "lower", | ||
"selector-no-id": true | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.