@restorecommerce/handlebars-helperized 0.1.20 → 1.0.1

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 +29 -0
  2. package/package.json +22 -13
package/CHANGELOG.md CHANGED
@@ -3,6 +3,35 @@
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.1](https://github.com/restorecommerce/handlebars-helperized/compare/@restorecommerce/handlebars-helperized@1.0.0...@restorecommerce/handlebars-helperized@1.0.1) (2022-10-14)
7
+
8
+ **Note:** Version bump only for package @restorecommerce/handlebars-helperized
9
+
10
+
11
+
12
+
13
+
14
+ # [1.0.0](https://github.com/restorecommerce/handlebars-helperized/compare/@restorecommerce/handlebars-helperized@0.1.20...@restorecommerce/handlebars-helperized@1.0.0) (2022-08-25)
15
+
16
+
17
+ ### Features
18
+
19
+ * move to fully typed grpc client and server ([ec9be2d](https://github.com/restorecommerce/handlebars-helperized/commit/ec9be2daff0823e9ba440a2845b7b1a7f2d74b50))
20
+
21
+
22
+ ### Reverts
23
+
24
+ * Revert "BREAKING CHANGE: move to fully typed grpc client and server" ([2d584a7](https://github.com/restorecommerce/handlebars-helperized/commit/2d584a709632ae608f595a2c836deabd34f671d9))
25
+
26
+
27
+ ### BREAKING CHANGES
28
+
29
+ * move to fully typed grpc client and server
30
+
31
+
32
+
33
+
34
+
6
35
  ## [0.1.20](https://github.com/restorecommerce/handlebars-helperized/compare/@restorecommerce/handlebars-helperized@0.1.19...@restorecommerce/handlebars-helperized@0.1.20) (2022-06-10)
7
36
 
8
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/handlebars-helperized",
3
- "version": "0.1.20",
3
+ "version": "1.0.1",
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",
@@ -21,31 +21,31 @@
21
21
  "dependencies": {
22
22
  "handlebars": "^4.7.7",
23
23
  "handlebars-layouts": "^3.1.4",
24
- "juice": "^8.0.0",
24
+ "juice": "^8.1.0",
25
25
  "lodash": "^4.17.21",
26
- "moment-timezone": "^0.5.34",
26
+ "moment-timezone": "^0.5.37",
27
27
  "numbro": "^2.3.6"
28
28
  },
29
29
  "devDependencies": {
30
- "@types/lodash": "^4.14.182",
31
- "@types/mocha": "^9.1.1",
32
- "@types/node": "^17.0.33",
33
- "@types/nodemailer": "^6.4.4",
30
+ "@types/lodash": "^4.14.186",
31
+ "@types/mocha": "^10.0.0",
32
+ "@types/node": "^18.8.5",
33
+ "@types/nodemailer": "^6.4.6",
34
34
  "@types/nodemailer-html-to-text": "^3.1.0",
35
35
  "@types/nodemailer-stub-transport": "^1.1.5",
36
- "@typescript-eslint/eslint-plugin": "^5.23.0",
37
- "@typescript-eslint/eslint-plugin-tslint": "^5.23.0",
38
- "@typescript-eslint/parser": "^5.23.0",
36
+ "@typescript-eslint/eslint-plugin": "^5.40.0",
37
+ "@typescript-eslint/eslint-plugin-tslint": "^5.40.0",
38
+ "@typescript-eslint/parser": "^5.40.0",
39
39
  "assert": "^2.0.0",
40
40
  "coveralls": "^3.1.1",
41
- "eslint": "^8.15.0",
41
+ "eslint": "^8.25.0",
42
42
  "eslint-plugin-prefer-arrow-functions": "^3.1.4",
43
43
  "is-generator": "^1.0.3",
44
44
  "mocha": "^10.0.0",
45
45
  "npm-run-all": "^4.1.5",
46
46
  "nyc": "^15.1.0",
47
47
  "should": "^13.2.3",
48
- "typescript": "^4.6.4"
48
+ "typescript": "^4.8.4"
49
49
  },
50
50
  "scripts": {
51
51
  "lint": "eslint src --ext .ts ",
@@ -60,5 +60,14 @@
60
60
  "engines": {
61
61
  "node": ">= 8.0.0"
62
62
  },
63
- "gitHead": "2d453885b1c82df3e6aabbfbfe3b5a9c0b240277"
63
+ "nx": {
64
+ "targets": {
65
+ "build": {
66
+ "outputs": [
67
+ "./lib"
68
+ ]
69
+ }
70
+ }
71
+ },
72
+ "gitHead": "64f3de896ab288cfa71e66aafe6e01ab3e37af26"
64
73
  }