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.
17 lines
393 B
17 lines
393 B
7 years ago
|
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']);
|
||
|
};
|