David Humphrey
David Humphrey
https://github.com/metarhia/sandboxed-fs is interesting, for locking `fs` to a directory. Could combine this with the `tmpDir` idea above. Not sure how hard to work at this, since we could also completely...
Comparison of `minimatch` and `picomatch` sizes and deps. First minimatch ``` dist/minimatch.js 14.56 KB 611ms ├── minimatch.js 7.31 KB 17ms ├── ../../../usr/local/lib/node_modules/parcel-bundler/node_modules/process/browser.js 2.27 KB 231ms ├── ../../../usr/local/lib/node_modules/parcel-bundler/node_modules/path-browserify/index.js 2.09 KB 2ms...
Filed a bug in picomatch to discuss, and it looks like we can't do much to make it smaller than it is (4.7K minified and gzipped vs. 4.1K for minimatch),...
I'll let @modeswitch review this one.
@andrewkoung sure, that's fine with me. Do you want to do a bit of reading/studying on your own, and then ask any questions you have in here? I'm happy to...
OK, sounds good. If/when you have questions, feel free to ask them here. Happy to help.
Right, `watchFile` will poll instead of waiting on events from the OS. If we decide to do polling, the easiest way would be to start an interval timer with `setInterval()`...
@andrewkoung thanks for the update. Here are a few thoughts, reading your code above: - The way you're dealing with `interval` will fail in some cases. I would suggest you...
Add find_symlink_node() to allow l* methods (lstat, lchown, etc) to use find_node like functionality
Good idea. Morphed this to be about adding a new function for the non-dereferencing case.
`path` is a node built-in, and according to https://parceljs.org/features/dependency-resolution/#builtin-modules should get resolved. I'm not sure what the issue is there, it's worth investigating more (i.e., this should work imho).