dcaillibaud
dcaillibaud
:+1: for at least a per directory override, like it was possible with mocha.opts It could be done allowing `.mocharc.js` in all directories, or reading an `override` property in the...
In my case pnpm was always broken by `pnpm add -g pnpm` and repaired by `npm i -g pnpm` I'm with debian 11 and a user `foo` who handle the...
As @aparajita says, this doesn't work in a multiuser environment (with one of the users handling the global store, others using it), because default rights on the global store make...
Same error here, because loading query is done with `https://domain.tld/current/path/worker-json.js` wich doesn't exists (and 404 page is an html one). Adding `import 'ace-builds/src-noconflict/worker-json'` doesn't solve the pb. My code is...
The pb seems solved for me (thanks to https://ace.c9.io/#nav=howto), with ``` import React from 'react' import AceEditor from 'react-ace' // cf https://ace.c9.io/#nav=howto for webpack use import 'ace-builds/webpack-resolver' const TextEditor =...
I confirm the bug in 2.0.3 in case total is 0 : ``` const ProgressBar = require('progress') const format = 'progress: :percent [:bar] :current/:total (~:etas left)' const options = {total:...
I have the same alias pb, here is a small repo to reproduce it : https://github.com/dcaillibaud/ts-mocha-boilerplate Thanks for any clue to make it working.
for testing purpose it can be ``` #!/bin/sh . "$(dirname "$0")/_/husky.sh" # doing a commit in pre-push for testing purpose date > date.flag git add date.flag git commit --no-verify -m...
I also don't think it's a minor bug, it forbids to use vite with pnpm9 on all of our projects (public and open source, with dependencies on our own gitlab).
Yes, I found this digging in the install script, but it wasn't so easy. I open this issue to suggest an install script improvement, giving the choice to print this...