Skip to content

Commit 1d87ea6

Browse files
committedSep 21, 2017
Restart the app development
In the meantime angular gets a lot more features. For example the update from 2.4 to 4.2.4, and the angular-cli instead of self written grunt tasks. The main-reason for this grocery app is to lern technices, and to play around. Therefore make an clean cut and rewrite this app. - Delete the old angular app. - Remain an few files, like the license or cordova stuff, because they are still the same. - Generate with the cli an new base structure (currently empty). -> It's now an empty app withouth any functionality. The next steps would be to reimplement all features, so that's hopefully it works at the end like before.
1 parent f0ceedf commit 1d87ea6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+10147
-1199
lines changed
 

‎.angular-cli.json

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"project": {
4+
"name": "grocery-list"
5+
},
6+
"apps": [
7+
{
8+
"root": "src",
9+
"outDir": "dist",
10+
"assets": [
11+
"assets",
12+
"favicon.ico"
13+
],
14+
"index": "index.html",
15+
"main": "main.ts",
16+
"polyfills": "polyfills.ts",
17+
"test": "test.ts",
18+
"tsconfig": "tsconfig.app.json",
19+
"testTsconfig": "tsconfig.spec.json",
20+
"prefix": "app",
21+
"styles": [
22+
"styles.css"
23+
],
24+
"scripts": [],
25+
"environmentSource": "environments/environment.ts",
26+
"environments": {
27+
"dev": "environments/environment.ts",
28+
"prod": "environments/environment.prod.ts"
29+
}
30+
}
31+
],
32+
"e2e": {
33+
"protractor": {
34+
"config": "./protractor.conf.js"
35+
}
36+
},
37+
"lint": [
38+
{
39+
"project": "src/tsconfig.app.json"
40+
},
41+
{
42+
"project": "src/tsconfig.spec.json"
43+
},
44+
{
45+
"project": "e2e/tsconfig.e2e.json"
46+
}
47+
],
48+
"test": {
49+
"karma": {
50+
"config": "./karma.conf.js"
51+
}
52+
},
53+
"defaults": {
54+
"styleExt": "css",
55+
"component": {}
56+
}
57+
}

‎.editorconfig

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# http://editorconfig.org
1+
# Editor configuration, see http://editorconfig.org
22
root = true
33

44
[*]
@@ -8,12 +8,6 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11-
1211
[*.md]
13-
max_line_length = 0
12+
max_line_length = off
1413
trim_trailing_whitespace = false
15-
16-
# Indentation override
17-
#[lib/**.js]
18-
#[{package.json,.travis.yml}]
19-
#[**/**.js]

0 commit comments

Comments
 (0)
Please sign in to comment.