clara/resources/mix/scripts.js

12 lines
325 B
JavaScript
Raw Normal View History

2023-04-11 09:21:20 +00:00
const glob = require('glob');
// Keenthemes' plugins
2023-11-21 08:26:00 +00:00
var componentJs = glob.sync(`resources/_keenthemes/src//js/components/*.js`) || [];
var coreLayoutJs = glob.sync(`resources/_keenthemes/src//js/layout/*.js`) || [];
2023-04-11 09:21:20 +00:00
module.exports = [
...componentJs,
...coreLayoutJs,
2023-09-26 09:39:39 +00:00
'resources/mix/common/button-ajax.js'
2023-04-11 09:21:20 +00:00
];