This commit is contained in:
2026-03-03 16:30:57 +07:00
parent a13304e40e
commit c253e1a370
7569 changed files with 1324841 additions and 0 deletions
@@ -0,0 +1,44 @@
module.exports = (grunt)->
less = 'less'
TARGET_DIR = 'css'
grunt.initConfig
less:
flag:
src: 'less/flag-icon.less'
dest: 'css/flag-icon.css'
docs:
src: 'assets/docs.less'
dest: 'assets/docs.css'
cssmin:
flag:
src: 'css/flag-icon.css'
dest: 'css/flag-icon.min.css'
watch:
css:
options:
livereload: true
files: '**/*.less'
tasks: ['build']
assets:
options:
livereload: true
files: ['index.html', 'assets/*']
connect:
server:
options:
port: 8000
keepalive: true
grunt.loadNpmTasks 'grunt-contrib-less'
grunt.loadNpmTasks 'grunt-contrib-cssmin'
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-contrib-connect'
grunt.registerTask 'build', ['less', 'cssmin']
grunt.registerTask 'default', ['build', 'watch']