Skip to content

Commit 5c59bff

Browse files
committed
Upgraded Angular-CLI
1 parent fcdbc5d commit 5c59bff

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.editorconfig

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ root = true
55
charset = utf-8
66
indent_style = space
77
indent_size = 2
8-
end_of_line = lf
98
insert_final_newline = true
109
trim_trailing_whitespace = true
1110

1211
[*.md]
13-
max_line_length = 0
12+
max_line_length = off
1413
trim_trailing_whitespace = false

angular-cli.json

+11-2
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,26 @@
77
{
88
"root": "src",
99
"outDir": "dist",
10-
"assets": "assets",
10+
"assets": [
11+
"assets",
12+
"app.js"
13+
],
1114
"index": "index.html",
1215
"main": "main.ts",
1316
"test": "test.ts",
1417
"tsconfig": "tsconfig.json",
1518
"prefix": "app",
1619
"mobile": false,
1720
"styles": [
21+
"../bower_components/bootstrap/dist/css/bootstrap.css",
22+
"../bower_components/font-awesome/css/font-awesome.css",
23+
"../node_modules/@angular/material/core/theming/prebuilt/deeppurple-amber.css",
1824
"styles.css"
1925
],
20-
"scripts": [],
26+
"scripts": [
27+
"../bower_components/jquery/dist/jquery.js",
28+
"../bower_components/bootstrap/dist/js/bootstrap.js"
29+
],
2130
"environments": {
2231
"source": "environments/environment.ts",
2332
"dev": "environments/environment.ts",

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"@angular/core": "2.0.2",
1919
"@angular/forms": "2.0.2",
2020
"@angular/http": "2.0.2",
21+
"@angular/material": "^2.0.0-alpha.10",
2122
"@angular/platform-browser": "2.0.2",
2223
"@angular/platform-browser-dynamic": "2.0.2",
2324
"@angular/router": "3.0.0",
@@ -28,6 +29,7 @@
2829
"body-parser": "^1.15.2",
2930
"jquery": "^3.1.1",
3031
"moment": "^2.16.0",
32+
"ng2-meta": "^2.0.3",
3133
"nodemailer": "^2.6.4",
3234
"rxjs": "5.0.0-beta.12",
3335
"ts-helpers": "^1.1.1",
@@ -37,7 +39,7 @@
3739
"@types/core-js": "^0.9.34",
3840
"@types/jasmine": "^2.2.30",
3941
"@types/jquery": "^2.0.33",
40-
"angular-cli": "1.0.0-beta.16",
42+
"angular-cli": "^1.0.0-beta.21",
4143
"codelyzer": "~0.0.26",
4244
"jasmine-core": "2.4.1",
4345
"jasmine-spec-reporter": "2.5.0",

0 commit comments

Comments
 (0)