@budibase/string-templates 2.10.15 → 2.10.16-alpha.0

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.
@@ -1,8 +1,8 @@
1
1
  export const HelperFunctionBuiltin: string[];
2
2
  export namespace HelperFunctionNames {
3
- const OBJECT: string;
4
- const ALL: string;
5
- const LITERAL: string;
6
- const JS: string;
3
+ let OBJECT: string;
4
+ let ALL: string;
5
+ let LITERAL: string;
6
+ let JS: string;
7
7
  }
8
8
  export const LITERAL_MARKER: "%LITERAL%";
@@ -1,6 +1,6 @@
1
1
  export const processors: Postprocessor[];
2
2
  export namespace PostProcessorNames {
3
- const CONVERT_LITERALS: string;
3
+ let CONVERT_LITERALS: string;
4
4
  }
5
5
  declare class Postprocessor {
6
6
  constructor(name: any, fn: any);
@@ -6,8 +6,8 @@ declare class Preprocessor {
6
6
  process(fullString: any, statement: any, opts: any): any;
7
7
  }
8
8
  export namespace PreprocessorNames {
9
- const SWAP_TO_DOT: string;
10
- const FIX_FUNCTIONS: string;
11
- const FINALISE: string;
9
+ let SWAP_TO_DOT: string;
10
+ let FIX_FUNCTIONS: string;
11
+ let FINALISE: string;
12
12
  }
13
13
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/string-templates",
3
- "version": "2.10.15",
3
+ "version": "2.10.16-alpha.0",
4
4
  "description": "Handlebars wrapper for Budibase templating.",
5
5
  "main": "src/index.cjs",
6
6
  "module": "dist/bundle.mjs",
@@ -26,9 +26,8 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@budibase/handlebars-helpers": "^0.11.9",
29
- "dayjs": "^1.10.4",
29
+ "dayjs": "^1.10.8",
30
30
  "handlebars": "^4.7.6",
31
- "handlebars-utils": "^1.0.6",
32
31
  "lodash": "^4.17.20",
33
32
  "vm2": "^3.9.15"
34
33
  },
@@ -37,7 +36,6 @@
37
36
  "@rollup/plugin-json": "^4.1.0",
38
37
  "doctrine": "^3.0.0",
39
38
  "jest": "29.6.2",
40
- "jest-environment-node": "29.6.2",
41
39
  "marked": "^4.0.10",
42
40
  "rollup": "^2.36.2",
43
41
  "rollup-plugin-inject-process-env": "^1.3.1",
@@ -45,7 +43,7 @@
45
43
  "rollup-plugin-node-globals": "^1.4.0",
46
44
  "rollup-plugin-node-resolve": "^5.2.0",
47
45
  "rollup-plugin-terser": "^7.0.2",
48
- "typescript": "4.7.3"
46
+ "typescript": "5.2.2"
49
47
  },
50
- "gitHead": "1aff0770f2da0ed9c21e4079284f08587fe3ed7d"
48
+ "gitHead": "f373448384d66541cf3dfaf59bd1df32efd3661b"
51
49
  }