-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(keychain-aws-sm): complete request handler and endpoint
Fixes #967 Depends on #1349 Signed-off-by: Youngone Lee <[email protected]>
- Loading branch information
1 parent
63e639e
commit 56de06b
Showing
16 changed files
with
893 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,10 @@ | |
}, | ||
"scripts": { | ||
"run-ci": "./tools/ci.sh", | ||
"reset": "git clean -f -X && yarn run configure", | ||
"reset:node-modules": "del-cli --dry-run '**/node_modules'", | ||
"reset:git": "git clean -f -X", | ||
"reset:yarn-lock": "del-cli yarn.lock && yarn install --update-checksums --force", | ||
"reset": "run-s reset:git reset:node-modules reset:yarn-lock configure", | ||
"configure": "yarn install --frozen-lockfile --non-interactive && yarn run build:dev:backend", | ||
"install-yarn": "npm install --global [email protected]", | ||
"custom-checks": "TS_NODE_PROJECT=./tools/tsconfig.json node --trace-deprecation --experimental-modules --abort-on-uncaught-exception --loader ts-node/esm --experimental-specifier-resolution=node ./tools/custom-checks/run-custom-checks.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.