api-extractor issue
There is a problem with inconsistency in commands 👇
yarn workspace @fluentui/jest-serializer-make-styles build:local
Will create jest-serializer-make-styles/etc/jest-serializer-make-styles.api.md
yarn workspace @fluentui/jest-serializer-make-styles build
Will not create jest-serializer-make-styles/etc/jest-serializer-make-styles.api.md.
As I see that it's intentionally not included to build steps for Node packages:
|
task('build:node-lib', series('clean', 'copy', 'ts:commonjs-only')).cached(); |
|
task( |
|
'build', |
|
series( |
|
'clean', |
|
'copy', |
|
'sass', |
|
'ts', |
|
condition('api-extractor', () => !getJustArgv().min), |
|
), |
|
).cached(); |
I don't have any opinions about it and opened for suggestions 🙄
Originally posted by @layershifter in #18719 (comment)
api-extractorissueThere is a problem with inconsistency in commands 👇
yarn workspace @fluentui/jest-serializer-make-styles build:localWill create
jest-serializer-make-styles/etc/jest-serializer-make-styles.api.mdyarn workspace @fluentui/jest-serializer-make-styles buildWill not create
jest-serializer-make-styles/etc/jest-serializer-make-styles.api.md.As I see that it's intentionally not included to build steps for Node packages:
fluentui/scripts/just.config.ts
Line 122 in 8e42137
fluentui/scripts/just.config.ts
Lines 124 to 133 in 8e42137
I don't have any opinions about it and opened for suggestions 🙄
Originally posted by @layershifter in #18719 (comment)