Sha256: 09e41157403622d59a963fff6fbb45f9ff816f12d8524fe089262ddd9f5b2b4c
Contents?: true
Size: 736 Bytes
Versions: 19
Compression:
Stored size: 736 Bytes
Contents
module.exports = function (grunt) { grunt.config('copy.index-files', { expand: true, cwd: 'build/umd/', src: [ 'moment.js', 'locale/*.js', 'min/locales.js', 'min/moment-with-locales.js', 'min/tests.js', ], dest: '.', }); grunt.config('copy.esm', { expand: true, cwd: 'build/esm', src: ['moment.js'], dest: 'dist', }); grunt.config('copy.esm-locales', { expand: true, cwd: 'src', src: ['locale/*.js'], dest: 'dist', }); grunt.registerTask('update-index', [ 'copy:index-files', 'copy:esm', 'copy:esm-locales', ]); };
Version data entries
19 entries across 19 versions & 1 rubygems