littoral-templates 0.4.2-alpha.0 → 0.4.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +2 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -3,7 +3,8 @@
3
3
  ## 0.4.2
4
4
 
5
5
  * Synchronous style of `setEOLStyleFromOS` caused problems with bundlers — in particular: Vite.
6
- That function is now synchronous again, and gives clearer warnings on the console.
6
+ That function is now asynchronous again, so should typically be `await`ed.
7
+ It also should give warnings on the console when `setEOLStyleFromOS` is called when running in a browser.
7
8
 
8
9
 
9
10
  ## 0.4.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "littoral-templates",
3
- "version": "0.4.2-alpha.0",
3
+ "version": "0.4.2",
4
4
  "description": "A small JavaScript/TypeScript framework to do templating comfortably using the template literal syntax in either JavaScript or TypeScript.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",