Skip to content

Commit

Permalink
update to angular 12
Browse files Browse the repository at this point in the history
  • Loading branch information
timofei-iatsenko committed Nov 8, 2021
1 parent 46049d2 commit 24ea42d
Show file tree
Hide file tree
Showing 8 changed files with 151,811 additions and 5,520 deletions.
147,386 changes: 147,386 additions & 0 deletions .yarn/releases/yarn-1.22.1.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-1.22.1.cjs
12 changes: 9 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,20 @@
"main": "projects/example/src/main.ts",
"polyfills": "projects/example/src/polyfills.ts",
"tsConfig": "projects/example/tsconfig.app.json",
"aot": true,
"assets": [
"projects/example/src/favicon.ico",
"projects/example/src/assets"
],
"styles": [
"projects/example/src/styles.css"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand Down Expand Up @@ -104,7 +109,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "angular-cc-library",
"version": "2.1.2",
"version": "2.1.3",
"scripts": {
"run:demo": "ng serve example",
"build:library": "ng build angular-cc-library --prod ",
"build:library": "ng build angular-cc-library --configuration production ",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
Expand All @@ -12,33 +12,33 @@
},
"private": true,
"dependencies": {
"@angular-builders/jest": "^11.0.0",
"@angular/common": "~11.0.9",
"@angular/compiler": "~11.0.9",
"@angular/core": "~11.0.9",
"@angular/forms": "~11.0.9",
"@angular/platform-browser": "~11.0.9",
"@angular/platform-browser-dynamic": "~11.0.9",
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"@angular-builders/jest": "^12.1.2",
"@angular/common": "~12.2.13",
"@angular/compiler": "~12.2.13",
"@angular/core": "~12.2.13",
"@angular/forms": "~12.2.13",
"@angular/platform-browser": "~12.2.13",
"@angular/platform-browser-dynamic": "~12.2.13",
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"rxjs": "~6.6.3",
"tslib": "^2.1.0",
"zone.js": "~0.11.3"
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.7",
"@angular/cli": "~11.0.7",
"@angular/compiler-cli": "~11.0.9",
"@angular/language-service": "~11.0.9",
"@angular-devkit/build-angular": "~12.2.13",
"@angular/cli": "~12.2.13",
"@angular/compiler-cli": "~12.2.13",
"@angular/language-service": "~12.2.13",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"ng-packagr": "^11.0.3",
"lint-staged": "^11.2.6",
"ng-packagr": "^12.2.5",
"ngx-deploy-npm": "^1.3.2",
"ts-node": "~9.1.1",
"tslint": "~6.1.3",
"typescript": "~4.0.5"
"typescript": "~4.3.5"
},
"lint-staged": {
"*.ts": [
Expand Down
12 changes: 6 additions & 6 deletions projects/angular-cc-library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-cc-library",
"version": "2.1.2",
"version": "2.1.3",
"description": "angular credit card library",
"keywords": [
"angular",
Expand All @@ -12,18 +12,18 @@
"author": "nogorilla <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nogorilla/angular-cc-library/issues"
"url": "https://github.com/thekip/angular-cc-library/issues"
},
"homepage": "https://github.com/nogorilla/angular-cc-library#readme",
"homepage": "https://github.com/thekip/angular-cc-library#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nogorilla/angular-cc-library.git"
"url": "git+https://github.com/thekip/angular-cc-library.git"
},
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@angular/common": ">6 <12",
"@angular/core": ">6 <12"
"@angular/common": ">6 <13",
"@angular/core": ">6 <13"
}
}
2 changes: 1 addition & 1 deletion projects/example/src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ export const environment = {
* This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown.
*/
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
2 changes: 1 addition & 1 deletion projects/example/src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
/***************************************************************************************************
* Zone JS is required by default for Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.


/***************************************************************************************************
Expand Down
Loading

1 comment on commit 24ea42d

@Datcam
Copy link

@Datcam Datcam commented on 24ea42d Feb 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good afternoon, Timofei. I am a front-end developer and I am using your library: angular-cc-library.

May I ask you to update your library to the Angular 17 version, please?

I appreciate it.

Thank you and have a nice day :)

Please sign in to comment.