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

Version Path
card-mod-date-0.15.6 vendor/moment/tasks/update_index.js
card-mod-date-0.15.0 vendor/moment/tasks/update_index.js
card-mod-date-0.14.2 vendor/moment/tasks/update_index.js
card-mod-date-0.14.1 vendor/moment/tasks/update_index.js
card-mod-date-0.14.0 vendor/moment/tasks/update_index.js
card-mod-date-0.13.4 vendor/moment/tasks/update_index.js
card-mod-date-0.13.3 vendor/moment/tasks/update_index.js
card-mod-date-0.13.2 vendor/moment/tasks/update_index.js
card-mod-date-0.13.1 vendor/moment/tasks/update_index.js
card-mod-date-0.13.0 vendor/moment/tasks/update_index.js
card-mod-date-0.11.7 vendor/moment/tasks/update_index.js
card-mod-date-0.12.0 vendor/moment/tasks/update_index.js
card-mod-date-0.11.6 vendor/moment/tasks/update_index.js
card-mod-date-0.11.5 vendor/moment/tasks/update_index.js
card-mod-date-0.11.4 vendor/moment/tasks/update_index.js
card-mod-date-0.11.3 vendor/moment/tasks/update_index.js
card-mod-date-0.11.2 vendor/moment/tasks/update_index.js
card-mod-date-0.11.1 vendor/moment/tasks/update_index.js
card-mod-date-0.11.0 vendor/moment/tasks/update_index.js