keycloak-scim/Gruntfile.js
2020-08-17 09:02:43 +02:00

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']);
};