From b0fddc34e840a227c4969a4b213815d538dedabd Mon Sep 17 00:00:00 2001 From: Stefan Seifert Date: Tue, 21 Jan 2025 14:54:58 +0100 Subject: [PATCH] try to fix problem of missing template.module.js missing when build with github actions --- bundle/Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle/Gruntfile.js b/bundle/Gruntfile.js index ccfe5bf3..a7878b6c 100644 --- a/bundle/Gruntfile.js +++ b/bundle/Gruntfile.js @@ -7,7 +7,7 @@ module.exports = function (grunt) { grunt.initConfig({ pkg: grunt.file.readJSON("package.json"), src: { - js: ["<%= pkg.config.jsPath %>*.js"], + js: ["src/main/webapp/app-root/clientlibs/io.wcm.caconfig.editor/js/*.js"], html: ["src/main/resources/angularjs-partials/*.html"] }, html2js: { @@ -17,7 +17,7 @@ module.exports = function (grunt) { module: "io.wcm.caconfig.templates" }, src: ["<%= src.html %>"], - dest: "<%= pkg.config.jsPath %>templates.module.js" + dest: "src/main/webapp/app-root/clientlibs/io.wcm.caconfig.editor/js/templates.module.js" } }, eslint: {