refactoring: moves codemirror scripts to a separate file

This commit is contained in:
ievgenii vdovenko 2025-12-10 12:59:05 +01:00
parent 0132bba779
commit ba3a08b568
7 changed files with 33 additions and 12 deletions

View file

@ -18,5 +18,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-webpack');
grunt.registerTask('default', ['less:production', 'less:components', 'copy', 'webpack', 'concat:dist', 'terser:dist']);
grunt.registerTask('default', ['less:production', 'less:components', 'copy', 'webpack', 'concat:dist', 'terser:dist', 'concat:ext', 'uglify:ext']);
};