Commit bb62d451 authored by Panayiotis Lipiridis's avatar Panayiotis Lipiridis
Browse files

Removed dist and minor updates

parent 6361c382
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
.DS_Store
node_modules
+7 −8
Original line number Diff line number Diff line
@@ -12,7 +12,11 @@ module.exports = (grunt)->
        src: "#{SRC_DIR}/country-flag-icons.less"
        dest: "#{TARGET_DIR}/country-flag-icons.css"

    # dev only
    cssmin:
      app_css:
        src: "#{TARGET_DIR}/country-flag-icons.css"
        dest: "#{TARGET_DIR}/country-flag-icons.min.css"

    watch:
      build:
        options:
@@ -29,17 +33,12 @@ module.exports = (grunt)->
          livereload: true
        files: 'index.html'

    cssmin:
      app_css:
        src: "#{TARGET_DIR}/country-flag-icons.css"
        dest: "#{TARGET_DIR}/country-flag-icons.css"


    grunt.loadNpmTasks("grunt-contrib-clean")
    grunt.loadNpmTasks("grunt-contrib-less")
    grunt.loadNpmTasks("grunt-contrib-cssmin")
    grunt.loadNpmTasks("grunt-contrib-watch")

    grunt.registerTask("default", ["clean", "build"])
    grunt.registerTask("build", ["less", "watch"])
    grunt.registerTask("default", ["build", "watch"])
    grunt.registerTask("build", ["clean", "less"])
    grunt.registerTask("dist", ["clean", "less", "cssmin"])
+1498 −1

File changed.

Preview size limit exceeded, changes collapsed.

dist/bootstrap.min.css

deleted100644 → 0
+0 −1

File deleted.

Preview size limit exceeded, changes collapsed.

dist/less-1.4.1.min.js

deleted100644 → 0
+0 −11

File deleted.

Preview size limit exceeded, changes collapsed.

Loading