Skip to content

Commit

Permalink
output single type declaration file
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmcallister0210 committed Dec 1, 2024
1 parent 904c775 commit b5dfb88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cognito-srp-helper",
"version": "2.3.1",
"version": "2.3.2-beta-v1",
"description": "A helper for SRP authentication in AWS Cognito",
"author": "Simon McAllister",
"license": "Apache-2.0",
Expand Down Expand Up @@ -36,7 +36,7 @@
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "esbuild src/index.ts --bundle --packages=external --minify --format=cjs --outfile=dist/cjs/index.js && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json",
"build:esm": "esbuild src/index.ts --bundle --packages=external --minify --format=esm --outfile=dist/esm/index.js && echo '{ \"type\": \"module\" }' > dist/esm/package.json",
"build:types": "tsc --emitDeclarationOnly --declaration src/index.ts --esModuleInterop --outDir dist/types",
"build:types": "tsc --emitDeclarationOnly --declaration src/index.ts --esModuleInterop --outFile dist/types/index.d.ts",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint -c .eslintrc.cjs --fix src/**",
"format:prettier": "prettier -c .prettierrc.cjs --write src/**",
Expand Down

0 comments on commit b5dfb88

Please sign in to comment.