mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-06-16 07:07:37 +02:00
8 lines
240 B
JavaScript
8 lines
240 B
JavaScript
// 3rd party libs
|
|
window.Prism = require('prismjs')
|
|
|
|
// All the others
|
|
function requireAll (r) { r.keys().forEach(r) }
|
|
requireAll(require.context('./initializers/', true, /\.js$/))
|
|
requireAll(require.context('./behaviors/', true, /\.js$/))
|