Skip to content

Commit 6db191d

Browse files
IsmaestroIsmael Ramos
authored andcommitted
feat(angular): add lost files, move others and fix search bar component styles
1 parent 4071e1f commit 6db191d

18 files changed

+253
-155
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitignore

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
13
# compiled output
24
/dist
35
/tmp
6+
/out-tsc
47

58
# dependencies
69
/node_modules
7-
/coverage
810

911
# IDEs and editors
1012
/.idea
@@ -13,6 +15,7 @@
1315
.c9/
1416
*.launch
1517
.settings/
18+
*.sublime-workspace
1619

1720
# IDE - VSCode
1821
.vscode/*
@@ -24,15 +27,13 @@
2427
# misc
2528
/.sass-cache
2629
/connect.lock
27-
/coverage/*
30+
/coverage
2831
/libpeerconnection.log
2932
npm-debug.log
33+
yarn-error.log
3034
testem.log
3135
/typings
3236

33-
# e2e
34-
/e2e/*.map
35-
36-
#System Files
37+
# System Files
3738
.DS_Store
3839
Thumbs.db

angular.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,24 @@
2828
},
2929
{
3030
"glob": "sitemap.xml",
31-
"input": "src",
31+
"input": "src/assets",
3232
"output": "/"
3333
},
3434
{
3535
"glob": "googled41787c6aae2151b.html",
36-
"input": "src",
36+
"input": "src/assets",
3737
"output": "/"
3838
},
3939
{
4040
"glob": "CNAME",
41-
"input": "src",
41+
"input": "src/assets",
4242
"output": "/"
4343
}
4444
],
4545
"styles": [
4646
"src/assets/css/reset.css",
4747
"src/assets/css/loading.css",
48-
"src/assets/css/styles.scss"
48+
"src/styles.scss"
4949
],
5050
"stylePreprocessorOptions": {
5151
"includePaths": [
@@ -111,7 +111,7 @@
111111
"styles": [
112112
"src/assets/css/reset.css",
113113
"src/assets/css/loading.css",
114-
"src/assets/css/styles.scss"
114+
"src/styles.scss"
115115
],
116116
"assets": [
117117
{
@@ -126,17 +126,17 @@
126126
},
127127
{
128128
"glob": "sitemap.xml",
129-
"input": "src",
129+
"input": "src/assets",
130130
"output": "/"
131131
},
132132
{
133133
"glob": "googled41787c6aae2151b.html",
134-
"input": "src",
134+
"input": "src/assets",
135135
"output": "/"
136136
},
137137
{
138138
"glob": "CNAME",
139-
"input": "src",
139+
"input": "src/assets",
140140
"output": "/"
141141
}
142142
],
@@ -194,4 +194,4 @@
194194
"prefix": "app"
195195
}
196196
}
197-
}
197+
}

e2e/tsconfig.e2e.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
4-
"outDir": "../out-tsc/e2e",
5-
"baseUrl": "./",
4+
"outDir": "../out-tsc/app",
65
"module": "commonjs",
76
"target": "es5",
87
"types": [

0 commit comments

Comments
 (0)