Dem Pilafian

Results 20 comments of Dem Pilafian

@brianvoe While trying to resolve a **webpack** build issue in an unrelated package, I encountered the same CSS **_"is not exported from package"_** error. In case it's helpful, here's the...

A web page's URL is dependent on where the page is deployed and how the web server is configured, so the full URL is generally not known when the HTML...

You should be able to do that by setting the `some` variable in the `@@include` statement, like: ```html @@include("./var.html", { "some": "https://example.com/path" }) ```

Here's a real example that I think does what you're asking to do. It reads **package.json** into an object and then passes that into the `fileInclude()` function. **gulpfile.js** ```js import...

Yeah, that's even better -- simple and works automatically.

The **Select All** feature is enabled by default for me. And I can also specifically turn the feature on or off with the `enableCheckAll` option. These options work for me:...

@prikshitsetia If you have any questions, feel free to post them on this thread.

Please attach information to reproduce the bug, including version number and example input and output.

The default `JSON.stringify()` output can definitely result in unsightly wasted lines. The idea of a _"formatting function"_ sounds good, but it could be really tricky to create such a function....

The following JSON string looks correct: `'{ "id": "f7617e30-3ed1-4076-81ed-ed4841bbff64", "body": [1001,1,"b9047b40-ab74-1f67-f3a6-e7048059906e","ok","machine is ok"] }'` And it gets formatted as expected: ```js { id: "f7617e30-3ed1-4076-81ed-ed4841bbff64", body: [ 1001, 1, "b9047b40-ab74-1f67-f3a6-e7048059906e", "ok",...