zcatalyst-cli 1.15.0-beta.2 → 1.15.0-beta.3
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.
|
@@ -94,7 +94,9 @@ function copyIntegHandlers(templatePath, targetPath, lang) {
|
|
|
94
94
|
yield fs_1.ASYNC.copyFiles(filePaths, targetPath);
|
|
95
95
|
const integHandlerConfig = {};
|
|
96
96
|
const handlerPaths = handlers.map((handler) => {
|
|
97
|
-
integHandlerConfig[handler] =
|
|
97
|
+
integHandlerConfig[handler] =
|
|
98
|
+
constants_1.CLIQ.java_handlers_path +
|
|
99
|
+
constants_1.CLIQ.java_handler_file_mapping[handler].replace('.java', '');
|
|
98
100
|
return (0, path_1.join)(templatePath, constants_1.CLIQ.java_handlers_template_dir, constants_1.CLIQ.java_handler_file_mapping[handler]);
|
|
99
101
|
});
|
|
100
102
|
yield fs_1.ASYNC.copyFiles(handlerPaths, (0, path_1.join)(targetPath, constants_1.CLIQ.java_handlers_template_dir));
|
|
@@ -31,7 +31,7 @@ function getTemplatePath(fnType, add) {
|
|
|
31
31
|
switch (fnType) {
|
|
32
32
|
case constants_1.FN_TYPE.browserLogic:
|
|
33
33
|
case constants_1.FN_TYPE.integration: {
|
|
34
|
-
return js_1.JS.get(constants_1.TEMPLATE.functions.java[fnType], add
|
|
34
|
+
return js_1.JS.get(constants_1.TEMPLATE.functions.java[fnType], add);
|
|
35
35
|
}
|
|
36
36
|
default: {
|
|
37
37
|
return constants_1.TEMPLATE.functions.java[fnType];
|
|
@@ -32,7 +32,7 @@ function getTemplatePath(fnType, add) {
|
|
|
32
32
|
switch (fnType) {
|
|
33
33
|
case constants_1.FN_TYPE.browserLogic:
|
|
34
34
|
case constants_1.FN_TYPE.integration: {
|
|
35
|
-
return js_1.JS.get(constants_1.TEMPLATE.functions.node[fnType], add
|
|
35
|
+
return js_1.JS.get(constants_1.TEMPLATE.functions.node[fnType], add);
|
|
36
36
|
}
|
|
37
37
|
default: {
|
|
38
38
|
return constants_1.TEMPLATE.functions.node[fnType];
|
package/package.json
CHANGED