-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Closed
Description
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:
fluentui/scripts/just.config.ts
Line 122 in 8e42137
| task('build:node-lib', series('clean', 'copy', 'ts:commonjs-only')).cached(); |
fluentui/scripts/just.config.ts
Lines 124 to 133 in 8e42137
| 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)
Reactions are currently unavailable