Skip to content

Commit

Permalink
Fixes for build breakages
Browse files Browse the repository at this point in the history
Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
  • Loading branch information
bestbeforetoday authored and denyeart committed Sep 19, 2023
1 parent 30f70f6 commit 6e71f63
Show file tree
Hide file tree
Showing 26 changed files with 5,665 additions and 3,623 deletions.
4 changes: 2 additions & 2 deletions asset-transfer-basic/application-javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"author": "Hyperledger",
"license": "Apache-2.0",
"dependencies": {
"fabric-ca-client": "^2.2.4",
"fabric-network": "^2.2.4"
"fabric-ca-client": "^2.2.19",
"fabric-network": "^2.2.19"
},
"devDependencies": {
"eslint": "^7.32.0"
Expand Down
4 changes: 2 additions & 2 deletions asset-transfer-basic/application-typescript-hsm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"author": "Hyperledger",
"license": "Apache-2.0",
"dependencies": {
"fabric-ca-client": "^2.2.8",
"fabric-network": "^2.2.8"
"fabric-ca-client": "^2.2.19",
"fabric-network": "^2.2.19"
},
"devDependencies": {
"@types/node": "^12.20.55",
Expand Down
8 changes: 4 additions & 4 deletions asset-transfer-basic/application-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=14.14",
"npm": ">=6"
"node": ">=14.14"
},
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
Expand All @@ -20,10 +19,11 @@
"author": "Hyperledger",
"license": "Apache-2.0",
"dependencies": {
"fabric-ca-client": "^2.2.4",
"fabric-network": "^2.2.4"
"fabric-ca-client": "^2.2.19",
"fabric-network": "^2.2.19"
},
"devDependencies": {
"@tsconfig/node14": "^14.1.0",
"@types/node": "^14.17.32",
"tslint": "^5.11.0",
"typescript": "~4.9.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import * as FabricCAServices from 'fabric-ca-client';
import FabricCAServices from 'fabric-ca-client';
import { Wallet } from 'fabric-network';

const adminUserId = 'admin';
Expand Down
8 changes: 2 additions & 6 deletions asset-transfer-basic/application-typescript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node14/tsconfig.json",
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "dist",
"target": "es2017",
"moduleResolution": "node",
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"noImplicitAny": true
},
"include": [
"./src/**/*"
Expand Down
Loading

0 comments on commit 6e71f63

Please sign in to comment.