Robert Anthony External

- Total activity 53
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 12
-
Edited Can WebStorm 'audit' my imports in a NodeJS project to inform me when (and _where_) I need to only import some exports?
I'd like to be able to go through my project and change things likeimport R from 'ramda'const sillyValue = R.add(2,3) to import {add} from 'ramda'const sillyValue = add(2,3)Does WebStorm have any k... -
Created My .env values are not being updated consistently -- caching or not writing by WebStorm?
This is a long shot -- and to be clear, I don't think WebStorm is at fault here -- but I've been having problems where changes in my .env variables are not being reflected in run-time, that is, if ... -
Created How do I get WebStorm/TypeScript to 'forget' about other content roots?
I temporarily added another content root to my WebStorm project, and then removed it. The two content roots were the same repo downloaded into separate directories. WebStorm is now quite confused... -
Created Is Version Lens (or something similar) available as a plugin for WebStorm
I've looked but didn't find something similar to https://marketplace.visualstudio.com/items?itemName=pflannery.vscode-versionlens on the WebStorm plugin marketplace. Is there anything that provides... -
Edited Debugging Redux with NextJS -- breakpoints not getting hit...
I feel like I've been here before, so apologies if this has been asked and answered, but I did a search through the forum for 'NextJS' questions and didn't see mine.I have a NextJS project where I ... -
Edited Error with Prettier as File Watcher with TypeScript: "[error] No matching files. Patterns tried: index.ts !**/node_modules/** !./node_modules/** !**/.{git,svn,hg}/** !./.{git,svn,hg}/**"
I set up Prettier as a File Watcher for my TypeScript project but when I save a file I get /Users/r/Documents/projects/yaa-interface/node_modules/.bin/prettier --write index.ts[error] No matchi... -
Created How does one debug KeystoneJS apps in WebStorm?
This is a post similar to my post concerning debugging Strapi apps -- https://intellij-support.jetbrains.com/hc/en-us/community/posts/360007612720-Debugging-Strapi-custom-controllers-breakpoints-no... -
Created Debugging Strapi custom controllers: breakpoints not hit
Basically what the title says. I'm trying to get breakpoints to hit in a Strapi custom controller but the breakpoints never change color from red, nor are they hit. My config is (it runs the npm s... -
Edited WebStorm debugging suddenly *stopped* working (?)
I have WebStorm set up to debug a React app using a Javascript Debug configuration. It connects to a custom Chrome instance -- custom, so that I can retain my particular Chrome setup (Redux Dev To... -
Edited ReactJS project with Javascript Debug config: Chrome plugins (React and Redux Dev Tools) not showing up in Chrome instance launched
I've got a ReactJS app that I'm trying to debug with WS, using the Javascript Debug configuration. I've installed Redux and React Dev Tools in Chrome. However, when the debugger launches a...