Run the build command for the new editor script (CodeMirror 6)

This commit is contained in:
Tobi Schäfer 2025-06-01 22:23:37 +02:00
parent 8c0d6958f5
commit 2d6e35a333
Signed by: tobi
GPG key ID: 91FAE6FE2EBAC4C8

View file

@ -196,6 +196,13 @@ tasks.register('buildStaticFiles', Copy) {
'--outfile', outputFile,
'-g', 'uglifyify'
]
doLast {
exec {
// Run the build command for the new editor script (CodeMirror 6)
commandLine 'npm', 'run', 'build:editor.js'
}
}
}
}