@restorecommerce/handlebars-helperized 1.0.8 → 1.0.9
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 +11 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.9](https://github.com/restorecommerce/handlebars-helperized/compare/@restorecommerce/handlebars-helperized@1.0.8...@restorecommerce/handlebars-helperized@1.0.9) (2024-02-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* unit test ([0800d98](https://github.com/restorecommerce/handlebars-helperized/commit/0800d98b2345ae2c47ecfc58d68ccfc739a90f99))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [1.0.8](https://github.com/restorecommerce/handlebars-helperized/compare/@restorecommerce/handlebars-helperized@1.0.7...@restorecommerce/handlebars-helperized@1.0.8) (2024-02-26)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/handlebars-helperized",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Opinionated handlebars based templating engine for rendering e-mail like content",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"scripts": {
|
|
48
48
|
"lint": "eslint src --ext .ts ",
|
|
49
49
|
"pretest": "npm run build",
|
|
50
|
-
"test": "nyc mocha ./test/* --exit",
|
|
50
|
+
"test": "nyc mocha ./test/* --timeout 5000 --exit",
|
|
51
51
|
"build:tsc": "tsc -d",
|
|
52
52
|
"build:clean": "rimraf lib",
|
|
53
53
|
"build": "npm-run-all lint build:clean build:tsc",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "a8dd16f60dbe192d83de0b0574dd8733cdfa8695"
|
|
70
70
|
}
|