mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-09 05:15:02 +00:00
7 lines
227 B
JavaScript
7 lines
227 B
JavaScript
let directoryLoaderFunction = require.context('./mécanismes', true, /.yaml$/)
|
|
|
|
let items = directoryLoaderFunction
|
|
.keys()
|
|
.map((key) => [key.replace(/\.\/|\.yaml/g, ''), directoryLoaderFunction(key)])
|
|
|
|
export default items
|