Tobias S
Tobias S
I tried the solutions above, working with flask, and it doesn't run at all. Actually, following @pconwell's settings above, I can right-click and run in terminal, but not use code...
I tried duration = None and whilst a notification appeared, I also got an error saying duration must be int and not NoneType.
I tried this: In the file .\win10toast\__init__.py", line 112 ` if duration: sleep(duration) DestroyWindow(self.hwnd) UnregisterClass(self.wc.lpszClassName, None) return None` If you add the line `if duration:` and indent everything, then it...
Hello, I'm also facing this issue.  I have pm2 running under v17, but I always have to add nvm use 17 before being able to access it, which is...
I think I found a solution, which was in `.bashrc` Broken: `PATH=~/bin:/media/sdu1/USER/.nvm/versions/node/v20.10.0/` Working: `PATH=~/bin:/media/sdu1/USER/.nvm/versions/node/v17.9.1/` In my case, 20.10.0 wasn't installed, so it couldn't load it.
btw the TSConfig it's using looks like this: ```json { "extends": "../../tsconfig.build.json", "compilerOptions": { "incremental": true, "target": "ESNext", "module": "ESNext", "outDir": "./dist", "rootDir": "./src", "baseUrl": ".", "jsx": "react", "lib": ["DOM",...
We're just using `microbundle`. I can try to put a repro repository together if that will help.
I tried to reproduce it in another project but it hasn't happened yet :S
What's more, I removed the babelrc file from the actual project, and it built as normal. I'll fiddle with it a bit more and see if it breaks again, and...
It might also be that it was getting stuck on this babel issue with 0.14.x, and then by upgrading, it went away but the .babelrc file was then causing the...