@visulima/pail 2.1.20 → 2.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.server.cjs +1 -1
- package/dist/index.server.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## @visulima/pail [2.1.21](https://github.com/visulima/visulima/compare/@visulima/pail@2.1.20...@visulima/pail@2.1.21) (2025-01-26)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **pail:** dont call extra log on the a function ([a272682](https://github.com/visulima/visulima/commit/a27268205556f0b338e0634143b5361b4e345e07))
|
|
6
|
+
|
|
1
7
|
## @visulima/pail [2.1.20](https://github.com/visulima/visulima/compare/@visulima/pail@2.1.19...@visulima/pail@2.1.20) (2025-01-25)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/dist/index.server.cjs
CHANGED
|
@@ -395,7 +395,7 @@ class PailServerImpl extends pail_browser.PailBrowserImpl {
|
|
|
395
395
|
stream.__write = stream.write;
|
|
396
396
|
}
|
|
397
397
|
stream.write = (data) => {
|
|
398
|
-
this[type]
|
|
398
|
+
this[type](String(data).trim());
|
|
399
399
|
};
|
|
400
400
|
}
|
|
401
401
|
// eslint-disable-next-line class-methods-use-this
|
package/dist/index.server.mjs
CHANGED
|
@@ -391,7 +391,7 @@ class PailServerImpl extends PailBrowserImpl {
|
|
|
391
391
|
stream.__write = stream.write;
|
|
392
392
|
}
|
|
393
393
|
stream.write = (data) => {
|
|
394
|
-
this[type]
|
|
394
|
+
this[type](String(data).trim());
|
|
395
395
|
};
|
|
396
396
|
}
|
|
397
397
|
// eslint-disable-next-line class-methods-use-this
|