You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
393 B
16 lines
393 B
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.registerTask('update-index', ['copy:index-files']);
|
|
};
|
|
|