Sha256: e3b1c7254cdce6e11d383424001eec5d250e463244ae18ca2fbfb146a256a5af

Contents?: true

Size: 582 Bytes

Versions: 5

Compression:

Stored size: 582 Bytes

Contents

module.exports = {
  prepare: {
    files: [{
      expand: true,
      cwd: 'app/scripts',
      src: '**/*.js',
      dest: '<%%= dirs.tmp %>/prepare/assets/scripts'
    }, {
      expand: true,
      cwd: 'app/images',
      src: '**/*',
      dest: '<%%= dirs.tmp %>/prepare/assets/images'
    }, {
      expand: true,
      cwd: 'app/styles',
      src: '**/*',
      dest: '<%%= dirs.tmp %>/prepare/assets/styles'
    }]
  },
  finalize: {
    files: [{
      expand: true,
      cwd: '<%%= dirs.tmp %>/public',
      src: ['assets/**/*'],
      dest: 'public/'
    }]
  }
};

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
half-pipe-0.3.0.beta.2 lib/generators/half_pipe/templates/tasks/options/copy.js
half-pipe-0.3.0.beta.1 lib/generators/half_pipe/templates/tasks/options/copy.js
half-pipe-0.3.0.alpha.5 lib/generators/half_pipe/templates/tasks/options/copy.js
half-pipe-0.3.0.alpha.4 lib/generators/half_pipe/templates/tasks/options/copy.js
half-pipe-0.3.0.alpha.3 lib/generators/half_pipe/templates/tasks/options/copy.js