Tim Scott
Tim Scott
In `ruby test` for Sublime Text, test runs jump over `debug` or `byebug` statements and finish execution. In Atom, the code stops (I have verified this behavior for `byebug` only)....
When setting `"type": "module"` in `package.json` for node 14, schemaglue fails to load resolvers, with: > Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: /Users/tscott/code/glg/schemaglue-issue/app/graphql/query/resolver.js require() of ES modules...
I installed like: ```bash yarn add react-native-keyevent react-native link react-native-keyevent ``` In my code: ```js import KeyEvent from 'react-native-keyevent'; class MyComponent extends Component { componentDidMount() { KeyEvent.onKeyUpListener((keyCode) => { console.log(`Key...
Feature request: Support absolute paths in imports. Allow this: ```# import 'lib/fragments/FoobarFields.graphql'``` In place of this: ```# import '../../../../lib/fragments/FoobarFields.graphql'``` Particularly helpful since my editor does not autocomplete path nodes in...
### Steps to reproduce Upgrade Rails to 7.1 ### Expected behavior Don't render header as text ### Actual behavior After upgrading to Rails 7.1 routes rendering views with `= react_component`...
I'm not sure how to stop the supervisor. ``` ➜ procodile start --dev --procfile Procfile.dev Error: Cannot be started in the foreground because supervisor already running ➜ procodile stop Error:...
- [x] I have searched the [issues](https://github.com/recharts/recharts/issues) of this repository and believe that this is not a duplicate. ### Reproduction link [https://github.com/recharts/recharts](https://github.com/recharts/recharts) ### Steps to reproduce ```js {showLegend && }...
When I follow the README setup instructions exactly, I get this error when I run: ``` MainApplication.java:42: error: cannot find symbol new LANScanReactModule() ``` If I do what has worked...
I'm getting this error: ``` bash RNLANScan.fetchInfo got 0 arguments, expected 1 invoke BaseJavaModule.java:290 call NativeModuleRegistry.java:187 call NativeModuleRegistry.java:62 call CatalystInstanceImpl.java:432 run NativeRunnableDeprecated.java:-2 handleCallback Handler.java:739 dispatchMessage Handler.java:95 dispatchMessage MessageQueueThreadHandler.java:31 loop Looper.java:148...
In the root of my rails app I have `.foreman` file: ``` port: 3001 ``` And `Procfile.dev` ``` web: bundle exec rails s worker: bundle exec rake jobs:work ``` When...