clara/resources/mix/scripts.js

12 lines
323 B
JavaScript
Raw Normal View History

2023-04-11 09:21:20 +00:00
const glob = require('glob');
// Keenthemes' plugins
2024-01-02 10:56:18 +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
];