From 953c1435ee318a6aff6523d47c96fafa6b1bde4a Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Tue, 5 Oct 2021 13:37:05 -0700 Subject: [PATCH] Re-enable api extractor when building abort-controller (#17986) 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 #10320 Fixes #10320 --- sdk/core/abort-controller/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/abort-controller/package.json b/sdk/core/abort-controller/package.json index 8bd4e237e4e7..50d494802ba1 100644 --- a/sdk/core/abort-controller/package.json +++ b/sdk/core/abort-controller/package.json @@ -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",