Jesús Leganés-Combarro
Jesús Leganés-Combarro
Interesting, https://github.com/yaakovfeldman/jest-issue/blob/939832187ba12d058ffdb347c29643af40786eb7/app.js#L2 is using `require()`, so according to https://github.com/firebase/firebase-js-sdk/blob/4bd3a888353c26854142b1861f12e0222151af96/packages/firebase/package.json#L33-L39, it should be getting the CommonJS version, but it's getting the default one, although it's a node.js project... Since you are...
```js node { require: './app/dist/index.cjs.js', import: './app/dist/index.mjs' } [] [ 'require', 'default' ] default ./app/dist/index.esm.js [] [ 'require', 'default' ] ``` Ok, for some reason, Jest is not providing the...
We could provide the `node` condition, but will fail for any other environment that's not Node.js.
I'm open for ideas.
Never used `pnpm` before, and only tested it with `npm`. Can you explain your changes?
> **the key is** pnpm has special node_module structure > > ``` > node_modules > dep_a > node_modules > dep-b > ``` This is standard Node.js structure, just only not...
> ```js > resolver: '/resolver.js', > ``` Why do you have a custom resolver instead of using this module? What's its content?
> ah, since Jest 27.2.0 it should be passing a `conditions` array to the resolver that could be used for this Yes, but it's not fully implemented, I still have...
I think I don't understand... column number can be fetch from the position of the identifier inside the IdentifiersList and this number would change if you add or remove them...
I still don't get the catch of the rows and columns, as I told you this number can change, and also sqlparse allow to change specific fragments of the SQL...