Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Removed all current UI and started porting over without Covalent, thi…
Browse files Browse the repository at this point in the history
…s is the minimum to run the project again
  • Loading branch information
andrew-cunliffe committed Oct 11, 2018
1 parent 1439f36 commit c4890ad
Show file tree
Hide file tree
Showing 129 changed files with 1,084 additions and 3,147 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
.idea
10 changes: 7 additions & 3 deletions web/.editorconfig
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
[*.*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
indent_size = 4
insert_final_newline = true
max_line_length = off
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false

[*.feature]
indent_size = 2
22 changes: 10 additions & 12 deletions web/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"covalent-quickstart": {
"pipeline-dashboard": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
Expand All @@ -22,8 +22,7 @@
"src/favicon.ico"
],
"styles": [
"src/styles.scss",
"src/theme.scss"
"src/styles.scss"
],
"scripts": [
"node_modules/hammerjs/hammer.min.js",
Expand Down Expand Up @@ -70,23 +69,23 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "covalent-quickstart:build",
"browserTarget": "pipeline-dashboard:build",
"port": 4200,
"host": "localhost"
},
"configurations": {
"test": {
"browserTarget": "covalent-quickstart:build:test"
"browserTarget": "pipeline-dashboard:build:test"
},
"production": {
"browserTarget": "covalent-quickstart:build:production"
"browserTarget": "pipeline-dashboard:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "covalent-quickstart:build"
"browserTarget": "pipeline-dashboard:build"
}
},
"test": {
Expand All @@ -101,8 +100,7 @@
"node_modules/showdown/dist/showdown.js"
],
"styles": [
"src/styles.scss",
"src/theme.scss"
"src/styles.scss"
],
"assets": [
"src/assets",
Expand All @@ -123,7 +121,7 @@
}
}
},
"covalent-quickstart-e2e": {
"pipeline-dashboard-e2e": {
"root": "e2e",
"sourceRoot": "e2e",
"projectType": "application",
Expand All @@ -132,7 +130,7 @@
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "./protractor.conf.js",
"devServerTarget": "covalent-quickstart:serve"
"devServerTarget": "pipeline-dashboard:serve"
}
},
"lint": {
Expand All @@ -147,7 +145,7 @@
}
}
},
"defaultProject": "covalent-quickstart",
"defaultProject": "pipeline-dashboard",
"schematics": {
"@schematics/angular:component": {
"prefix": "app",
Expand Down
Loading

0 comments on commit c4890ad

Please sign in to comment.