Morgan Ney

Results 40 comments of Morgan Ney

> You have the first use case I've ever seen where a user wants to define story files as *.tsx instead of *.(stories|story).tsx. I’ve used storybook for years and never...

Either conditional exports or create a new package name since plugins no longer need to be prefixed with `eslint-plugin`. Either way, would be nice to see this effort completed. Currently,...

Use `overrides` (or `resolutions`) in your package.json. ```json "overrides": { "d3-color": "^3.1.0" } ```

You can always create your own Gulp task called `lint` using the [Node.js API from ESLint](https://eslint.org/docs/developer-guide/nodejs-api#eslint-class). Then you can use whatever version of ESLint you want with Gulp. Here's a...

Given this file: **top-level-await.js** ```js import { glob } from 'glob' await glob('*.js', { ignore: 'node_modules/**' }) ``` With this config: ```js export default [ // This very well could...

Ah, there are [Discussions](https://github.com/eslint/eslint/discussions) 👌 , noted. Thanks for your prompt feedback. This helped confirm what I was experiencing: > If languageOptions.parserOptions is supplied, then it will be passed to...

I have experienced the same issue. @pcone to get around the [`--omit=dev` issue you need npm >= 9.7.2](https://github.com/npm/cli/issues/6441). Another repo for reproducing: https://github.com/morganney/npm-workspaces If you run `npm install --install-strategy=nested --omit=dev...

Tests passed but got [this](https://app.circleci.com/pipelines/github/bundlewatch/service/2771/workflows/aaa23d23-f258-4aa1-9a07-d1e5c29c92cb/jobs/3472/steps?invite=true#step-106-16) coveralls issue.

You can use [tts-react](https://www.npmjs.com/package/tts-react) for React 18 support.

This produces a build of the `index.html` file used to demo my lib in the output directory: ```js rollupOptions: { input: { 'index.html': 'index.html', }, }, ``` allowing me to...