Sha256: e9556382af253d4caa55b99d5a1678558d2b95b79fb63768aeeeb6b428aadbf5

Contents?: true

Size: 545 Bytes

Versions: 10

Compression:

Stored size: 545 Bytes

Contents

module.exports = function (grunt) {
  'use strict';
  grunt.initConfig({
    dir: {
      src: 'src',
      dest: 'dist'
    },
    pkg: grunt.file.readJSON("package.json"),
    bower: {
      install: {
        options: {
          targetDir: './spec/javascripts/lib',
          layout: 'byComponent',
          install: true,
          verbose: false,
          cleanTargetDir: true,
          cleanBowerDir: false
        }
      }
    },
  });
  grunt.loadNpmTasks('grunt-bower-task');
  grunt.registerTask('default', ['bower:install']);
};

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tdiary-4.2.1 vendor/bundle/ruby/2.3.0/gems/tdiary-4.2.0/Gruntfile.js
tdiary-4.2.0 Gruntfile.js
tdiary-4.1.3 Gruntfile.js
tdiary-4.1.2 Gruntfile.js
tdiary-4.1.1 Gruntfile.js
tdiary-4.1.0 Gruntfile.js
tdiary-4.1.0.20141126 Gruntfile.js
tdiary-4.0.5.1 Gruntfile.js
tdiary-4.0.5 Gruntfile.js
tdiary-4.0.4 Gruntfile.js