aboutsummaryrefslogtreecommitdiffstats
path: root/demo-ui/gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'demo-ui/gruntfile.js')
-rw-r--r--demo-ui/gruntfile.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/demo-ui/gruntfile.js b/demo-ui/gruntfile.js
new file mode 100644
index 0000000..7e8bc68
--- /dev/null
+++ b/demo-ui/gruntfile.js
@@ -0,0 +1,25 @@
+module.exports = function (grunt) {
+
+ grunt.initConfig({
+ less: {
+ app: {
+ files: {
+ 'app/views/css/vcpe.css': 'app/views/less/vcpe.less'
+ }
+ }
+ },
+
+ watch: {
+ less: {
+ files: 'app/views/less/*.less',
+ tasks: ['css']
+ }
+ }
+ });
+
+ grunt.loadNpmTasks('grunt-contrib-less');
+ grunt.loadNpmTasks('grunt-contrib-watch');
+ grunt.registerTask('css', ['less']);
+ grunt.registerTask('default', ['css']);
+
+};