Jason Gore

Results 14 issues of Jason Gore

## Summary With the following invocation (suppressing output as much as I know how based on documentation): ```tsx const extractorResult = Extractor.invoke(extractorConfig, { localBuild: false, showVerboseMessages: false, showDiagnostics: false, messageCallback:...

**Is this a feature or a bug?** - [ ] Feature - [X] Bug **Please describe the actual behavior.** `build` can be specified as a `"ignoreMissingScript": true` and build will...

bug
help wanted
effort: easy
workaround

`nodeExecTask` didn't assume `__dirname` when invoking a relative script, which forced me to do: ``` task('wacbuild', nodeExecTask({ enableTypeScript: true, args: [path.join(__dirname, './wacBuildRun.ts')] })); ``` I'm not exactly sure if this...

I was trying nodeExecTask in a situation where it shouldn't have worked and discovered it doesn't error when the module it tries to run doesn't exist: ``` $ just-scripts wacbuild...

Issues and ideas for improvement: * Docs show how to define and run tasks, but how do you integrate them into the build process? * Difference between scripts and tasks?...

Area: Documentation

**Summary:** App should focus on location when I've moved or haven't used it in some time. **Steps to reproduce:** 1. Use app for morning commute focusing on morning bus stop....

enhancement

I noticed some values for types such as `MouseEvent.button` are [defined in Web API specs](https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button) but are not defined in `lib.dom.ts`: ``` 0: Main button pressed, usually the left button...

`fast-glob` [dropped support for backslashes as of 3.0](https://github.com/mrmlnc/fast-glob/issues/237#issuecomment-546057189). Since [`webpack-deduplication-plugin` requires `fast-glob` `3.2.2`](https://github.com/atlassian-labs/webpack-deduplication-plugin/blob/fb8b8d763b589fd955972088d0c18cfedc4a86d3/package.json#L39), this prevents the plugin from working correctly in Windows. No `package.json` files will ever be globbed, and...

While trying the TS 3.9 RC I'm encountering numerous compile errors against `lib.dom.d.ts` against properties that have been removed. I noticed the introduction of these changes in [this PR](https://github.com/microsoft/TypeScript/pull/37616/files), notably...

# Bug Report ### 🔎 Search Terms maintain emitted backwards compatibility ts minbar across minor releases ### 🕗 Version & Regression Information - This changed between versions TS4.4 and TS4.5...