From 0892cd6507e84433e38265060b4a6890c6da6f02 Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Mon, 26 Oct 2020 14:54:18 -0700 Subject: [PATCH] fix: missed references of cactus-sdk during rename in previous PR This commit updates references of cactus-sdk that were missed by the earlier pull request: https://github.com/hyperledger/cactus/pull/324 Signed-off-by: Peter Somogyvari #314 --- package.json | 4 ++-- tslint.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 14ce1ecce0..3a55e8904a 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "start:cockpit": "lerna run --scope '*/cactus-cockpit' --stream serve:proxy", "export-open-api-spec": "ts-node -e 'import(\"./packages/cactus-cmd-api-server/src/main/typescript/openapi-spec\").then((x) => x.exportToFileSystemAsJson());'", "pregenerate-sdk": "npm-run-all export-open-api-spec", - "generate-sdk": "openapi-generator generate --input-spec cactus-openapi-spec.json -g typescript-axios -o packages/cactus-sdk/src/main/typescript/generated/openapi/typescript-axios/", - "clean": "lerna exec --stream --ignore '*/*cockpit' -- del-cli dist/** && del-cli packages/cactus-sdk/src/main/typescript/generated/openapi/typescript-axios/*", + "generate-sdk": "openapi-generator generate --input-spec cactus-openapi-spec.json -g typescript-axios -o packages/cactus-api-client/src/main/typescript/generated/openapi/typescript-axios/", + "clean": "lerna exec --stream --ignore '*/*cockpit' -- del-cli dist/** && del-cli packages/cactus-api-client/src/main/typescript/generated/openapi/typescript-axios/*", "lint": "lerna exec --stream --ignore '*/*cockpit' -- cross-env DEBUG= tslint --project tsconfig.json", "tsc": "lerna run tsc", "build": "npm-run-all build:dev build:prod", diff --git a/tslint.json b/tslint.json index 9a56a1d0be..ddb68c6dbf 100644 --- a/tslint.json +++ b/tslint.json @@ -16,8 +16,8 @@ "rulesDirectory": [], "linterOptions": { "exclude": [ - "packages/cactus-sdk/src/main/typescript/generated/**/*.ts", - "packages/cactus-sdk/src/main/typescript/public-api.ts" + "packages/cactus-api-client/src/main/typescript/generated/**/*.ts", + "packages/cactus-api-client/src/main/typescript/public-api.ts" ] } } \ No newline at end of file