Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

Commit

Permalink
Re-enable api extractor when building abort-controller (Azure#17986)
Browse files Browse the repository at this point in the history
This PR re-enables the use of api extractor in the build step for the abort-controller package.
I no longer see the problems reported in Azure#10320 

Fixes Azure#10320
  • Loading branch information
ramya-rao-a authored Oct 6, 2021
1 parent c7f4926 commit 23b90ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/core/abort-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build:samples": "echo Obsolete",
"build:test": "tsc -p . && rollup -c 2>&1",
"build:types": "downlevel-dts types/src types/3.1",
"build": "npm run clean && tsc -p . && rollup -c 2>&1 && npm run build:types",
"build": "npm run clean && tsc -p . && rollup -c 2>&1 && api-extractor run --local && npm run build:types",
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
"clean": "rimraf dist dist-* temp types *.tgz *.log",
"docs": "typedoc --excludePrivate --excludeNotExported --excludeExternals --stripInternal --mode file --out ./dist/docs ./src",
Expand Down

0 comments on commit 23b90ad

Please sign in to comment.