Stephen Darnell

Results 38 comments of Stephen Darnell

Aha... I see that the meteor-job package has a *DEV* dependency on fibers: ``` "dependencies": { }, "devDependencies": { "coffee-script": "^1.12.5", "mocha": "^3.2.0", "rewire": "^2.5.2", "sinon": "^1.17.7", "chai": "^3.5.0", "fibers":...

OK, sounds fair enough. It seems very strange that the dev dependency is leaking out into the final collections package distribution. I don't know whether that is a result of...

😄 I don't think it is urgent as meteor 1.6 is probably at least 2 weeks away, but I wanted to give you a heads up on the problem.

My guess is that its related to the inclusion on fibers in the node_modules of this package. On macos (with meteor 1.6) I hit an issue where it was initially...

For me (Angular 15, typescript 4.8.4) I needed to import the types explicitly in my tsconfig.spec.json: ```json "types": [ "jasmine", "node", // "@testing-library/jasmine-dom", "@types/testing-library__jasmine-dom" ] ```

Ah, but then later I'd enabled noImplicitAny in my tsconfig and things stopped working. My current solution for that is to have `"noImplicitAny": true` in the main app tsconfig, and...

Similar issue for me, and I created a simple repro that may help. See branch https://github.com/sdarnell/cf-svelte/tree/bugs/missing-platform This works fine when directed to the regular page, but it you try to...

I had a similar issue with Jetbrains Rider/Webstorm which ends up running with the current directory being the settings directory of the IDE. I did wonder whether a better option...