Eric Eldredge
Eric Eldredge
This is a super great package, thanks! What do you think of supporting (perhaps optionally?) linting via [linter](https://github.com/AtomLinter/Linter)? It would be nice to unify that aspect of the IDE's behavior...
Atom has a new [Docks](http://blog.atom.io/2017/05/23/docks-deep-dive.html) feature that might make wrangling narrow instances easier. What do you think?
```shell ❯ yarn test:integration --grep "_test" yarn run v1.22.19 $ yarn workspace @parcel/integration-tests test --grep _test $ cross-env NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test PARCEL_BUILD_ENV=test mocha --grep _test _test 1) _test 0 passing (728ms)...
Based on the output for `findAsset`. Some examples of how it works: An imported symbol: ``` > .findAssetWithSymbol $8f94277571a64835$export$e08c7d021b829b7a bRRst node_modules/stylis/dist/stylis.mjs imported as prefixer from node_modules/stylis/src/Enum.js ``` A declared symbol:...
In the simplest case: ``` javascript somePlugin = { processResponse(res) { return next => { // do something async, i guess... next(res); } } } ``` The main use case...
Should this loader have the ability to generate dependencies from link and source paths, like [html-loader](https://github.com/webpack/html-loader#examples)? Maybe it could even pass its string content to html loader as a last...
The HTML5BP google analytics snippet is already using [Modernier.load](http://www.modernizr.com/docs/#load): ``` javascript Modernizr.load({ load: ('https:' == location.protocol ? '//ssl' : '//www') + '.google-analytics.com/ga.js' }); ``` We could do the same with...
[vim.notify](https://neovim.io/doc/user/lua.html#vim.notify()) is arguably a more ergonomic way of showing level-filtered messages to the user, and it also allows for custom providers and handling, like [nvim-notify](https://github.com/rcarriga/nvim-notify) or [noice](https://github.com/folke/noice.nvim) , to integrate...