Skip to content

Commit

Permalink
chore(deps): upgrade angular in examples/supply chain app
Browse files Browse the repository at this point in the history
Fixes #2002

Signed-off-by: aldousalvarez <[email protected]>
  • Loading branch information
aldousalvarez committed Jul 13, 2022
1 parent 7c76438 commit 425d913
Show file tree
Hide file tree
Showing 6 changed files with 692 additions and 2,586 deletions.
1 change: 1 addition & 0 deletions examples/cactus-example-supply-chain-frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.angular/cache
# Specifies intentionally untracked files to ignore when using Git
# http://git-scm.com/docs/gitignore

Expand Down
12 changes: 0 additions & 12 deletions examples/cactus-example-supply-chain-frontend/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@
"browserTarget": "app:build:production"
},
"ci": {
"progress": false
}
}
},
Expand Down Expand Up @@ -135,17 +134,6 @@
}
}
},
"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 Down
54 changes: 27 additions & 27 deletions examples/cactus-example-supply-chain-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
"start": "ng serve"
},
"dependencies": {
"@angular/common": "12.2.0",
"@angular/core": "12.2.0",
"@angular/forms": "12.2.0",
"@angular/platform-browser": "12.2.0",
"@angular/platform-browser-dynamic": "12.2.0",
"@angular/router": "12.2.0",
"@angular/common": "13.3.7",
"@angular/core": "13.3.7",
"@angular/forms": "13.3.7",
"@angular/platform-browser": "13.3.7",
"@angular/platform-browser-dynamic": "13.3.7",
"@angular/router": "13.3.7",
"@hyperledger/cactus-api-client": "1.0.0",
"@hyperledger/cactus-common": "1.0.0",
"@hyperledger/cactus-core-api": "1.0.0",
Expand All @@ -62,36 +62,36 @@
"@hyperledger/cactus-plugin-ledger-connector-besu": "1.0.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "1.0.0",
"@hyperledger/cactus-plugin-ledger-connector-quorum": "1.0.0",
"@ionic-native/core": "5.35.0",
"@ionic-native/splash-screen": "5.35.0",
"@ionic-native/status-bar": "5.35.0",
"@ionic/angular": "5.6.13",
"rxjs": "7.3.0",
"tslib": "2.3.0",
"zone.js": "0.11.4"
"@ionic-native/core": "5.36.0",
"@ionic-native/splash-screen": "5.36.0",
"@ionic-native/status-bar": "5.36.0",
"@ionic/angular": "6.1.5",
"rxjs": "7.5.5",
"tslib": "2.4.0",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-builders/custom-webpack": "12.1.0",
"@angular-devkit/build-angular": "12.2.0",
"@angular/cli": "12.2.0",
"@angular/compiler": "12.2.0",
"@angular/compiler-cli": "12.2.0",
"@angular/language-service": "12.2.0",
"@ionic/angular-toolkit": "4.0.0",
"@types/node": "16.4.13",
"@angular-builders/custom-webpack": "13.1.0",
"@angular-devkit/build-angular": "13.3.5",
"@angular/cli": "13.3.5",
"@angular/compiler": "13.3.7",
"@angular/compiler-cli": "13.3.7",
"@angular/language-service": "13.3.7",
"@ionic/angular-toolkit": "6.1.0",
"@types/node": "17.0.32",
"codelyzer": "6.0.2",
"constants-browserify": "1.0.0",
"jasmine-core": "3.8.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.16",
"karma-chrome-launcher": "3.1.0",
"karma": "6.3.19",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine": "5.0.0",
"karma-jasmine-html-reporter": "1.7.0",
"protractor": "7.0.0",
"ts-node": "10.2.0",
"ts-node": "10.7.0",
"tslint": "6.1.3",
"typescript": "4.3.5"
"typescript": "4.6.4"
},
"engines": {
"node": ">=10",
Expand All @@ -100,4 +100,4 @@
"publishConfig": {
"access": "public"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ const apiClient = new ApiClient(configuration);

@NgModule({
declarations: [AppComponent],
entryComponents: [],
imports: [BrowserModule, IonicModule.forRoot(), AppRoutingModule],
providers: [
StatusBar,
Expand Down
10 changes: 0 additions & 10 deletions examples/cactus-example-supply-chain-frontend/src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,6 @@
* BROWSER POLYFILLS
*/

/** IE10 and IE11 requires the following for NgClass support on SVG elements */
// import 'classlist.js'; // Run `npm install --save classlist.js`.

/**
* Web Animations `@angular/platform-browser/animations`
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
*/
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.

/**
* By default, zone.js will patch all possible macroTask and DomEvents
* user can disable parts of macroTask/DomEvents patch by setting following flags
Expand Down
Loading

0 comments on commit 425d913

Please sign in to comment.