@budibase/string-templates 2.10.15 → 2.10.16-alpha.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.
@@ -1,8 +1,8 @@
|
|
1
1
|
export const HelperFunctionBuiltin: string[];
|
2
2
|
export namespace HelperFunctionNames {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
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%";
|
@@ -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
|
-
|
10
|
-
|
11
|
-
|
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.
|
3
|
+
"version": "2.10.16-alpha.1",
|
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.
|
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": "
|
46
|
+
"typescript": "5.2.2"
|
49
47
|
},
|
50
|
-
"gitHead": "
|
48
|
+
"gitHead": "dbbad85c0356d2708683cb47fec12d3ad6fda92c"
|
51
49
|
}
|