Skip to content

Commit

Permalink
Merge pull request #105 from guilhermeborgesbastos/deps/upgrade-to-an…
Browse files Browse the repository at this point in the history
…gular-13

Upgrade to Angular 13
  • Loading branch information
guilhermeborgesbastos authored Jan 18, 2022
2 parents d1b568f + 56c0c8f commit b580047
Show file tree
Hide file tree
Showing 11 changed files with 8,496 additions and 11,431 deletions.
51 changes: 51 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json",
"e2e/tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ speed-measure-plugin*.json
.history/*

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#[1.7.0](https://github.com/guilhermeborgesbastos/live-resume/releases/tag/v1.7) (2022-01-18)
###📃 release notes
- Upgrade to Angular 13.1.2;
- Replace TSLint by ESLint;
- Upgrade to Typescript 4.5.4.

#[1.6.0](https://github.com/guilhermeborgesbastos/live-resume/releases/tag/v1.6) (2022-01-14)
###📃 release notes
- Upgrade to Angular 12.2.15;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Get rid of your old and deprecated text resume by using the first **Open-source

## What is included❓

* A fully functional _Angular 12_ application with a customizable template and content;
* A fully functional _Angular 13_ application with a customizable template and content;
* Totally responsive for the mobile and desktop devices _(allow mobile gestures too... ;))_;
* Internationalization for English and Portuguese _(easy for adding/removing new languages - in18 lib)_;
* Mobile navigation sharing _(Share the resume with native apps like Whatsapp, LinkedIn, Facebook, etc...)_;
Expand Down
38 changes: 21 additions & 17 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,16 @@
]
},
"en": {
"localize": ["en"],
"localize": [
"en"
],
"outputPath": "dist/en/",
"i18nMissingTranslation": "error"
},
"pt": {
"localize": ["pt"],
"localize": [
"pt"
],
"outputPath": "dist/pt/",
"i18nMissingTranslation": "error"
},
Expand Down Expand Up @@ -129,19 +133,6 @@
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
Expand All @@ -153,8 +144,21 @@
"devServerTarget": "live-resume:serve:production"
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
}
}},
"defaultProject": "live-resume"
}
},
"defaultProject": "live-resume",
"cli": {
"defaultCollection": "@angular-eslint/schematics"
}
}
Loading

0 comments on commit b580047

Please sign in to comment.