Skip to content

Commit

Permalink
fix(protocol_tests): add downlevel-dts script to aws-json-10 (#2540)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Jul 2, 2021
1 parent 5e3db00 commit e77b926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protocol_tests/aws-json-10/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"scripts": {
"clean": "yarn remove-definitions && yarn remove-dist && yarn remove-documentation",
"build-documentation": "yarn remove-documentation && typedoc ./",
"prepublishOnly": "yarn build && downlevel-dts dist/types dist/types/ts3.4",
"remove-definitions": "rimraf ./types",
"remove-dist": "rimraf ./dist",
"remove-documentation": "rimraf ./docs",
"test": "yarn build && jest --coverage --passWithNoTests",
"build:cjs": "tsc -p tsconfig.json",
"build:es": "tsc -p tsconfig.es.json",
"build": "yarn build:cjs && yarn build:es"
"build": "yarn build:cjs && yarn build:es",
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4"
},
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
Expand Down

0 comments on commit e77b926

Please sign in to comment.