Vaughan Rouesnel
Vaughan Rouesnel
``` const {fs} = require('memfs') const realFs = require('fs') realFs.readdirSync('/') realFs.symlinkSync('/', '/foo') realFs.readdirSync('/') realFs.readdirSync('/foo') // works console.log('works') fs.readdirSync('/') fs.symlinkSync('/', '/foo') fs.readdirSync('/') fs.readdirSync('/foo') // fails ``` https://runkit.com/vjpr/5a87383e1ff7740012733bd1
https://github.com/wilix-team/iohook/blob/229774494c7c338936d0596acd3f4693d363ea39/build.js#L143-L145 Should be `args.push('--dist-url=https://electronjs.org/headers');` From: https://www.electronjs.org/docs/latest/tutorial/using-native-node-modules#manually-building-for-electron
``` pnpm rebuild --reporter=ndjson ``` ``` let mainPath = Array(attempts).join("../"); try { const content = fs.readFileSync(path.join(__dirname, mainPath, 'package.json'), 'utf-8'); const packageJson = JSON.parse(content); const opts = packageJson.iohook || {}; if...
https://github.com/shakacode/bootstrap-loader/blob/master/src/bootstrap.loader.js#L160 Log message should tell user with missing styleLoaders to add styleLoaders with `-loader` to be compatible with webpack 2.
When `bootstrap-loader` is `npm linked`, because it has `extract-text-webpack-plugin` in its `devDependencies`, it will use its local copy instead of the user's project's copy. Only one module instance should be...
Currently `bootstrap-sass` needs to be resolvable from `bootstrap-loader/lib/utils/resolveModule.js`. This means that `bootstrap-sass` is a peer dependency on `bootstrap-loader`. Custom module systems such as pnpm will not be able to find...
> `make sure your 'styleLoaders' array starts with 'style' or 'isomorphic-style' at index #0` I had to patch `style-loaders` and publish as `@vjpr/style-loaders`. This hard-coded requirement for `style-loaders` breaks my...
**Do you want to request a *feature* or report a *bug*?** Bug **What is the current behavior?** Bundling fails when using expo + pnpm monorepo with multiple versions of `metro`....
**Do you want to request a *feature* or report a *bug*?** Bug **What is the current behavior?** I am using a custom `resolver.resolveRequest ` function in `rn-cli.config.js`. See https://facebook.github.io/metro/docs/en/configuration#resolver-options. The...
Using `!(node_modules)/**/package.json` still seems to search within `node_modules`...or at least its still very slow compared to every other library I'm testing.