We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bb8383 commit 2e0373bCopy full SHA for 2e0373b
scripts/build.js
@@ -101,12 +101,12 @@ async function build(target) {
101
const extractorConfig = ExtractorConfig.loadFileAndPrepare(
102
extractorConfigPath
103
)
104
- const result = Extractor.invoke(extractorConfig, {
+ const extractorResult = Extractor.invoke(extractorConfig, {
105
localBuild: true,
106
showVerboseMessages: true
107
})
108
109
- if (result.succeeded) {
+ if (extractorResult.succeeded) {
110
// concat additional d.ts to rolled-up dts (mostly for JSX)
111
if (pkg.buildOptions && pkg.buildOptions.dts) {
112
const dtsPath = path.resolve(pkgDir, pkg.types)
0 commit comments