test: execute api-extractor on CI properly (#8123)

This commit is contained in:
Alexander Vakrilov
2019-11-21 08:25:06 +02:00
committed by GitHub
parent 3daca6638b
commit defb4f8880
3 changed files with 36 additions and 34 deletions

View File

@ -1875,6 +1875,8 @@ export interface ShowModalOptions {
animated?: boolean;
cancelable?: boolean
closeCallback: Function;
context: any;
@ -3061,9 +3063,9 @@ export class XmlParser {
// nativescript-core/index.d.ts:117:5 - (ae-forgotten-export) The symbol "layout" needs to be exported by the entry point index.d.ts
// nativescript-core/index.d.ts:118:5 - (ae-forgotten-export) The symbol "ad" needs to be exported by the entry point index.d.ts
// nativescript-core/index.d.ts:119:5 - (ae-forgotten-export) The symbol "ios" needs to be exported by the entry point index.d.ts
// nativescript-core/ui/core/view-base/view-base.d.ts:166:26 - (ae-forgotten-export) The symbol "Property" needs to be exported by the entry point index.d.ts
// nativescript-core/ui/core/view-base/view-base.d.ts:166:26 - (ae-forgotten-export) The symbol "CssProperty" needs to be exported by the entry point index.d.ts
// nativescript-core/ui/core/view-base/view-base.d.ts:166:26 - (ae-forgotten-export) The symbol "CssAnimationProperty" needs to be exported by the entry point index.d.ts
// nativescript-core/ui/core/view-base/view-base.d.ts:171:26 - (ae-forgotten-export) The symbol "Property" needs to be exported by the entry point index.d.ts
// nativescript-core/ui/core/view-base/view-base.d.ts:171:26 - (ae-forgotten-export) The symbol "CssProperty" needs to be exported by the entry point index.d.ts
// nativescript-core/ui/core/view-base/view-base.d.ts:171:26 - (ae-forgotten-export) The symbol "CssAnimationProperty" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)

View File

@ -51,7 +51,7 @@ mkdir -p "$DIST"
npx rimraf "$DIST/$PACKAGE"
npx rimraf "$DIST/$PACKAGE*.tgz"
npm run api-extractor
npm run api-extractor-ci
echo "Copying $PACKAGE $DIST/$PACKAGE..."
npx ncp "$PACKAGE" "$DIST/$PACKAGE"

View File

@ -8,7 +8,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@microsoft/api-extractor": "^7.5.0",
"@microsoft/api-extractor": "7.6.1",
"@nativescript/tslint-rules": "0.0.5",
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",