Skip to content

Commit 0892cd6

Browse files
committed
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: hyperledger-cacti#324 Signed-off-by: Peter Somogyvari <[email protected]> hyperledger-cacti#314
1 parent b70266b commit 0892cd6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"start:cockpit": "lerna run --scope '*/cactus-cockpit' --stream serve:proxy",
1010
"export-open-api-spec": "ts-node -e 'import(\"./packages/cactus-cmd-api-server/src/main/typescript/openapi-spec\").then((x) => x.exportToFileSystemAsJson());'",
1111
"pregenerate-sdk": "npm-run-all export-open-api-spec",
12-
"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/",
13-
"clean": "lerna exec --stream --ignore '*/*cockpit' -- del-cli dist/** && del-cli packages/cactus-sdk/src/main/typescript/generated/openapi/typescript-axios/*",
12+
"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/",
13+
"clean": "lerna exec --stream --ignore '*/*cockpit' -- del-cli dist/** && del-cli packages/cactus-api-client/src/main/typescript/generated/openapi/typescript-axios/*",
1414
"lint": "lerna exec --stream --ignore '*/*cockpit' -- cross-env DEBUG= tslint --project tsconfig.json",
1515
"tsc": "lerna run tsc",
1616
"build": "npm-run-all build:dev build:prod",

tslint.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"rulesDirectory": [],
1717
"linterOptions": {
1818
"exclude": [
19-
"packages/cactus-sdk/src/main/typescript/generated/**/*.ts",
20-
"packages/cactus-sdk/src/main/typescript/public-api.ts"
19+
"packages/cactus-api-client/src/main/typescript/generated/**/*.ts",
20+
"packages/cactus-api-client/src/main/typescript/public-api.ts"
2121
]
2222
}
2323
}

0 commit comments

Comments
 (0)