2018-01-03 15:54:19 +00:00
|
|
|
let directoryLoaderFunction = require.context('./mécanismes', true, /.yaml$/)
|
2017-08-14 13:30:33 +00:00
|
|
|
|
2019-04-25 16:07:07 +00:00
|
|
|
let items = directoryLoaderFunction
|
|
|
|
.keys()
|
2020-12-01 09:17:27 +00:00
|
|
|
.map((key) => [key.replace(/\.\/|\.yaml/g, ''), directoryLoaderFunction(key)])
|
2017-08-16 11:56:14 +00:00
|
|
|
|
2017-08-14 13:30:33 +00:00
|
|
|
export default items
|