Skip to content

Commit 30e859f

Browse files
authored
Merge pull request raysuelzer#20 from shivambindal93/angular-v17
Angular ver 17 upgrade, along with test cases and prettier fix
2 parents 0ad81df + 85e73d1 commit 30e859f

Some content is hidden

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

44 files changed

+8826
-18023
lines changed

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.angular/*
2+
dist/*
3+
node_modules/*

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"printWidth": 100,
3+
"singleQuote": false,
4+
"trailingComma": "none"
5+
}

README.md

Lines changed: 102 additions & 94 deletions
Large diffs are not rendered by default.

angular.json

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,8 @@
5757
"polyfills": "projects/demo/src/polyfills.ts",
5858
"tsConfig": "projects/demo/tsconfig.app.json",
5959
"inlineStyleLanguage": "scss",
60-
"assets": [
61-
"projects/demo/src/favicon.ico",
62-
"projects/demo/src/assets"
63-
],
64-
"styles": [
65-
"projects/demo/src/styles.scss"
66-
],
60+
"assets": ["projects/demo/src/favicon.ico", "projects/demo/src/assets"],
61+
"styles": ["projects/demo/src/styles.scss"],
6762
"scripts": []
6863
},
6964
"configurations": {
@@ -104,18 +99,18 @@
10499
"builder": "@angular-devkit/build-angular:dev-server",
105100
"configurations": {
106101
"production": {
107-
"browserTarget": "demo:build:production"
102+
"buildTarget": "demo:build:production"
108103
},
109104
"development": {
110-
"browserTarget": "demo:build:development"
105+
"buildTarget": "demo:build:development"
111106
}
112107
},
113108
"defaultConfiguration": "development"
114109
},
115110
"extract-i18n": {
116111
"builder": "@angular-devkit/build-angular:extract-i18n",
117112
"options": {
118-
"browserTarget": "demo:build"
113+
"buildTarget": "demo:build"
119114
}
120115
},
121116
"test": {
@@ -126,13 +121,8 @@
126121
"tsConfig": "projects/demo/tsconfig.spec.json",
127122
"karmaConfig": "projects/demo/karma.conf.js",
128123
"inlineStyleLanguage": "scss",
129-
"assets": [
130-
"projects/demo/src/favicon.ico",
131-
"projects/demo/src/assets"
132-
],
133-
"styles": [
134-
"projects/demo/src/styles.scss"
135-
],
124+
"assets": ["projects/demo/src/favicon.ico", "projects/demo/src/assets"],
125+
"styles": ["projects/demo/src/styles.scss"],
136126
"scripts": []
137127
}
138128
}

0 commit comments

Comments
 (0)