Christian Kaisermann
Christian Kaisermann
Yep. I've made a small example logging a 'which wp2' (will fail) return code.
There you go: Code: ```js plan.remote(function (transport) { ['bar','baz'].forEach(function(str){ var hasWPCLI = transport.exec('which ' + str, { failsafe: true }); console.log(hasWPCLI.code); }); }); ``` Output: ``` ~/P/o/deployjs 1 $ fly...
Sorry for the delay! My flightplan.js: ```js var plan = require('flightplan'); plan.target('staging', { host: 'pepperoni', username: 'user', agent: process.env.SSH_AUTH_SOCK }); plan.remote(function (transport) { ['bar','baz'].forEach(function(str){ var returnCode = transport.exec('which ' +...
Willing to help if needed :)
I've gave this a try some time ago and made a little POC: https://github.com/vtex/styleguide/tree/refactor/monorepo+lerna+workspaces if it helps anyone
Hey, @x4080 👋 `svelte-loadable` has nothing to do with CSS. Are you saying that you're dynamic including a component and its CSS is not being loaded?
Hey @maximedupre 👋 Firstly, thanks for your detailed issue. Would you be able to provide a repro repository? It would help a lot to debug your situation.
Hey @frederikhors 👋 I haven't used kit seriously yet, so I'm afraid I don't know how to answer that 😢 With that said, I don't recall seeing anything regarding loading...
This looks very promising indeed and will also simplify quite a lot the preprocessors. I'm travelling right now, but will read it again once I'm back.
Those `exclude/include` props would only function as filters, right? The `exclude` option is very straight-forward to grasp: makes `svelte.preprocess` skip preprocessing a `filename` that matches one of the globs. What...