@budibase/string-templates 3.43.0 → 3.44.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.
package/dist/index.d.ts CHANGED
@@ -55,12 +55,6 @@ export declare function processStringWithLogsSync(string: string, context?: obje
55
55
  result: string;
56
56
  logs: Log[];
57
57
  };
58
- /**
59
- * By default with expressions like {{ name }} handlebars will escape various
60
- * characters, which can be problematic. To fix this we use the syntax {{{ name }}},
61
- * this function will find any double braces and switch to triple.
62
- * @param string the string to have double HBS statements converted to triple.
63
- */
64
58
  export declare function disableEscaping(string: string): string;
65
59
  /**
66
60
  * Simple utility function which makes sure that a templating property has been wrapped in literal specifiers correctly.
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@budibase/string-templates",
3
- "version": "v3.43.0",
3
+ "version": "v3.44.1",
4
4
  "description": "Handlebars wrapper for Budibase templating.",
5
5
  "main": "dist/bundle.cjs",
6
6
  "module": "dist/bundle.mjs",
7
7
  "types": "dist/index.d.ts",
8
+ "type": "module",
8
9
  "license": "MPL-2.0",
9
10
  "exports": {
10
11
  ".": {
@@ -32,13 +33,13 @@
32
33
  "@rollup/plugin-inject": "^5.0.5",
33
34
  "@rollup/plugin-json": "^4.1.0",
34
35
  "@rollup/plugin-node-resolve": "^15.2.3",
36
+ "@rollup/plugin-terser": "^1.0.0",
35
37
  "@rollup/plugin-typescript": "8.3.0",
36
38
  "@types/doctrine": "^0.0.9",
37
39
  "doctrine": "^3.0.0",
38
40
  "marked": "^4.0.10",
39
41
  "rollup": "4.59.0",
40
- "rollup-plugin-polyfill-node": "^0.13.0",
41
- "rollup-plugin-terser": "^7.0.2"
42
+ "rollup-plugin-polyfill-node": "^0.13.0"
42
43
  },
43
- "gitHead": "221c199a898fffd9c8803d5327cc3089cc02b7f3"
44
+ "gitHead": "1709761edbab48686390d5d2336283e31b0d1dce"
44
45
  }