Skip to content

Commit

Permalink
try to fix problem of missing template.module.js missing when build w…
Browse files Browse the repository at this point in the history
…ith github actions
  • Loading branch information
stefanseifert committed Jan 21, 2025
1 parent 00f779d commit b0fddc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundle/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -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: {
Expand Down

0 comments on commit b0fddc3

Please sign in to comment.