mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
15 lines
389 B
JavaScript
15 lines
389 B
JavaScript
module.exports = function (grunt) {
|
|
var join = require('path').join;
|
|
|
|
grunt.registerTask('require_css_deps:copy', function () {
|
|
[
|
|
'css-builder.js',
|
|
'normalize.js'
|
|
].forEach(function (dep) {
|
|
grunt.file.copy(
|
|
join(grunt.config.get('bowerComponentsDir'), 'require-css', dep),
|
|
join(grunt.config.get('build'), 'src', dep)
|
|
);
|
|
});
|
|
});
|
|
};
|