Skip to content

Commit

Permalink
fix: missed references of cactus-sdk during rename in previous PR
Browse files Browse the repository at this point in the history
This commit updates references of cactus-sdk that were missed by the earlier pull request:
hyperledger#324

Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>

hyperledger#314
  • Loading branch information
petermetz committed Oct 27, 2020
1 parent b70266b commit 0892cd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
}

0 comments on commit 0892cd6

Please sign in to comment.