-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
40 lines (33 loc) · 895 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
const Funnel = require('broccoli-funnel');
const replace = require('broccoli-string-replace');
const mergeTrees = require('broccoli-merge-trees');
const path = require('path');
module.exports = {
name: 'lodash',
treeForAddon (tree) {
const lodashPath = path.dirname(require.resolve('lodash-es/'));
let lodashTree = this.treeGenerator(lodashPath);
lodashTree = new Funnel(lodashTree, {
include: [
'**/*.js'
]
});
lodashTree = replace(lodashTree, {
files: ['**/*.js'],
patterns: [
{
match: /from '([^']+)\.js'/g,
replacement: "from '$1'"
}
]
});
if (!tree) {
return this._super.treeForAddon.call(this, lodashTree);
}
const trees = mergeTrees([lodashTree, tree], {
overwrite: true
});
return this._super.treeForAddon.call(this, trees);
}
};