Pete Gonzalez

Results 67 issues of Pete Gonzalez

Consider the following TypeScript source file: ```typescript /** [1] * @file Copyright (c) Example Corporation */ /** [2] * The Widget class */ // [3] TODO: This class needs to...

request for comments

@evanargelion has been asking about defining custom TSDoc tags for toolchain directives. A build task would use the compiler API to extract the comments, invoke the TSDoc parser, and then...

request for comments
needs design

Based on the issues encountered in the [issue #12 thread](https://github.com/Microsoft/tsdoc/issues/12#issuecomment-400776472), we are concluding that TSDoc cannot reasonably be based directly on the CommonMark spec. The goals are conflicting: - **CommonMark...

request for comments

@liamross brought up an interesting scenario in #115: > However, the fact that my documentation will have zero indication of the type of a parameter means that this could never...

general discussion

Overloading `Object.toString()` seemed like a sensible way to provide functions for rendering various objects as strings. However, in practice this is confusing because every object has this method, so you...

enhancement

## Usage scenario Try this very basic example: ```js const { prompt } = require('enquirer'); prompt({ type: 'confirm', name: 'question', message: 'Did you like enquirer?' }) .then(answer => console.log('Answer:', answer));...

## 🐛 Bug Report Some background: We are trying to adopt `@reduxjs/[email protected]`, which depends on `immer`. Our projects target ES5 because we need to support devices with ancient JavaScript runtimes....

typescript

## Summary In a large repo, it's pretty annoying when `package.json` files are not formatted consistently. When you have to do bulk updates across many files, it's annoying that each...

enhancement
needs design

## Summary Docusaurus uses the `.md` file extension, but its syntax is [MDX](https://mdx-git-renovate-babel-monorepo-mdx.vercel.app/about) not Markdown. A number of Markdown constructs don't get rendered correctly by MDX. ## Test cases Here's...

enhancement
help wanted
effort: medium

## Summary This is a proposal for two Rush changes to improve the developer experience in a large monorepo where postinstall scripts often fail: 1. **Faster retries** by separating the...

enhancement