Mildred Ki'Lya
Mildred Ki'Lya
Someone got the same issue with css-tree and rollup : https://github.com/rollup/rollup/issues/4597 Suggestion is to avoid bundling css-tree and instead require it at runtime: > I'd suggest externalize it. The best...
css-tree already has some code to remove the `createRequire`: https://github.com/csstree/csstree/blob/ba6dfd8bb0e33055c05f13803d04825d98dd2d8d/scripts/esm-to-cjs.cjs#L60
I could generate a build with: ```diff diff --git a/package-lock.json b/package-lock.json index 084abc5..31a6fd3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36,6 +36,7 @@ "playwright-core": "^1.32.3", "rimraf": "^5.0.0", "rollup": "^3.20.6", + "rollup-plugin-includepaths":...
The new version with ne css-tree seems to work a bit, some selectors that were ignored before are no longer, however, the whole style from my book is completely off...
The issue I had was something specific with other patches I had. How, I have an error `funcNode.children.last()` is not a function, I had to change `last()` to `last` but...
There is an issue with the id transformation to data-id in stylesheets, but I still have infinite looping due to overflows There should not be overflows in the first place,...
The infinite loop is corrected by setting in `findBreakToken()` (chunker/layout.js) the following line: ```js if (node === null) node = prevBreakToken?.node ``` edit: except all of the overflow is lost......
This is implemented on top of #188 ... if #188 is not merged, then I'll rebase to remove unwanted commits
Yes, that's it. The main advantage is that it's possible to assign listening ports at the system level and increased security.
@akshayitzme I updated the code following your review.