2caafc74b2
fixing: #20
19 lines
No EOL
344 B
JavaScript
19 lines
No EOL
344 B
JavaScript
module.exports = function (grunt) {
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
|
|
|
grunt.initConfig({
|
|
// …
|
|
copy: {
|
|
files: {
|
|
cwd: './node_modules/@patternfly/patternfly/assets/',
|
|
src: '**/*',
|
|
dest: 'public/assets/',
|
|
expand: true
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.registerTask('default', ['copy']);
|
|
|
|
}; |