Martin Hochel
Martin Hochel
Hey folks! I got 2 important questions to consider this in our next project: - Does this somehow support exporting to `.mo` files and vice versa ? - If not...
## Summary API-Documenter already custom tags via [TSDoc](https://api-extractor.com/pages/configs/tsdoc_json/). We need similar functionality for access modifier annotations to leverage api stripping based on our needs. Please check following [RFC](https://github.com/microsoft/fluentui/pull/23577) for more...
## Summary when `publicTrimmedFilePath` is used and public API surfaces contain type information that are produced from types that contain `@internal` annotation , api-extractor generates invalid `.d.ts` rollup file. ##...
## Summary We wanna leverage stripping `@internal` APIs from rolluped dts definition by leveraging `publicTrimmedFilePath` config. Unfortunately things doesn't work as one would expect. **Actual** When [TS Paths aliases](https://www.typescriptlang.org/docs/handbook/module-resolution.html#path-mapping) are...
## Summary 3rd party package API's with `@internal` annotation are not removed when `publicTrimmedFilePath` is used. > 3rd party package == any dependency installed outside actual repo ## Repro steps...
In my experience, creating these super huge Readme files will go south sooner or later... hard to maintain, hard to refactor etc... Consider using GitBook, all in all [Dan Abramov...
### Issue #1 **Current:** ```js tscTask({build:'tsconfig.json', pretty: true}) ``` ``` Error: Command failed: "/path-to-project/node_modules/typescript/lib/tsc.js" --pretty --build "/path-to-project/tsconfig.json" β error TS6369: Option '--build' must be the first command line argument. ```...
**Repro** ```js const { task, logger, option, argv } = require('just-task'); option('name', {describe: 'user name or something'}); task('blimey', 'An exclamation of surprise.', function() { logger.info(`blimey! ${argv().name}`); }); ``` ### Actual...
**version:** [email protected] **error:** 
Currently `option()` works on global level (one singleton via an object). While this behaviour might be ok for task or two, one will start having issue in bigger project. To...