Skip to content

Commit 801058e

Browse files
committed
- Updated the Angular builder;
- Updated the Angular CLI; - Update Angular Material; - Updated packages
2 parents eeca274 + d78d7e9 commit 801058e

File tree

146 files changed

+4188
-14995
lines changed

Some content is hidden

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

146 files changed

+4188
-14995
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ testem.log
4444
# System Files
4545
.DS_Store
4646
Thumbs.db
47+
/.angular

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"singleQuote": true,
3+
"tabWidth": 2,
4+
"trailingComma": "all",
5+
"quoteProps": "as-needed",
6+
"jsxSingleQuote": true,
7+
"bracketSpacing": true,
8+
"bracketSameLine": false,
9+
"arrowParens": "always"
10+
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
Built with [Angular](https://angular.io/), [Angular Material](https://material.angular.io/).
44
**No jQuery and Bootstrap!**
55

6-
**This version uses Angular 11.2**
6+
**This version uses Angular 13.2**
77

88
[Demo](https://demo.flatlogic.com/angular-material-admin-full). Use any credentials to log in.
99

1010
[![image](https://user-images.githubusercontent.com/17360676/88760123-fed4ec80-d174-11ea-9584-12b8d3a7f8b3.png)](https://demo.flatlogic.com/angular-material-admin-full)
1111

1212
## Features
1313

14-
- Angular (**11.2**)
14+
- Angular (**13.2**)
1515
- **No jQuery and Bootstrap!**
1616
- Mobile friendly layout (responsive)
17-
- Angular Material 11.2
17+
- Angular Material 13.2
1818
- Modular Architecture
1919
- Styled Components
2020
- Stylish, clean, responsive layout

angular.json

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,13 @@
1616
"build": {
1717
"builder": "@angular-devkit/build-angular:browser",
1818
"options": {
19-
"outputPath": "dist",
19+
"outputPath": "build",
2020
"index": "src/index.html",
2121
"main": "src/main.ts",
2222
"polyfills": "src/polyfills.ts",
2323
"tsConfig": "tsconfig.app.json",
2424
"aot": true,
25-
"assets": [
26-
"src/favicon.ico",
27-
"src/assets"
28-
],
25+
"assets": ["src/favicon.ico", "src/assets"],
2926
"styles": [
3027
"./node_modules/font-awesome/scss/font-awesome.scss",
3128
"./node_modules/ngx-toastr/toastr.css",
@@ -68,14 +65,6 @@
6865
"with": "src/environments/environment.hmr.ts"
6966
}
7067
]
71-
},
72-
"backend": {
73-
"fileReplacements": [
74-
{
75-
"replace": "src/environments/environment.ts",
76-
"with": "src/environments/environment.backend.ts"
77-
}
78-
]
7968
}
8069
}
8170
},
@@ -92,9 +81,6 @@
9281
"hmr": {
9382
"hmr": true,
9483
"browserTarget": "angular-material-admin:build:hmr"
95-
},
96-
"backend": {
97-
"browserTarget": "angular-material-admin:build:backend"
9884
}
9985
}
10086
},
@@ -112,9 +98,7 @@
11298
"tsconfig.spec.json",
11399
"e2e/tsconfig.json"
114100
],
115-
"exclude": [
116-
"**/node_modules/**"
117-
]
101+
"exclude": ["**/node_modules/**"]
118102
}
119103
}
120104
}

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [1.2.0] - 11/06/2022
4+
### Updated
5+
6+
- Updated the Angular builder;
7+
- Updated the Angular CLI;
8+
- Update Angular Material;
9+
- Updated packages
10+
311
## [1.1.0] - 11/11/2021
412
### Updated
513

0 commit comments

Comments
 (0)