PHP Classes

File: vendors/starrr/Gruntfile.coffee

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/starrr/Gruntfile.coffee   Download  
File: vendors/starrr/Gruntfile.coffee
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 669 bytes
 

Contents

Class file image Download
module.exports = (grunt) -> grunt.loadNpmTasks('grunt-contrib-coffee') grunt.loadNpmTasks('grunt-contrib-sass') grunt.loadNpmTasks('grunt-contrib-watch') grunt.loadNpmTasks('grunt-release') grunt.initConfig pkg: '<json:package.json>' coffee: all: src: 'src/starrr.coffee' dest: 'dist/starrr.js' options: bare: true sass: all: files: 'dist/starrr.css': 'src/starrr.scss' options: sourcemap: 'none' watch: all: files: ['src/starrr.coffee', 'src/starrr.scss'] tasks: 'default' grunt.registerTask 'default', ['coffee:all', 'sass:all']