File tree 2 files changed +7
-9
lines changed
2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1
1
const loaderUtils = require ( 'loader-utils' )
2
- const loaderFuncsMap = Object . create ( null )
2
+ const name = require ( './package.json' ) . name
3
3
4
4
module . exports = function simpleFunctionalLoader ( ...args ) {
5
- const { id } = loaderUtils . getOptions ( this )
6
- return loaderFuncsMap [ id ] . call ( this , ...args )
5
+ const { processor } = loaderUtils . getOptions ( this )
6
+ return processor . call ( this , ...args )
7
7
}
8
8
9
9
module . exports . createLoader = function createLoader ( processor ) {
10
10
if (
11
11
typeof processor !== 'function' ||
12
12
Function . prototype . toString . call ( processor ) . indexOf ( 'function' )
13
13
) {
14
- throw new Error ( 'simple-functional-loader : parameter passed to "createLoader" must be an ES5 function.\n' + processor )
14
+ throw new Error ( name + ' : parameter passed to "createLoader" must be an ES5 function.\n' + processor )
15
15
}
16
- const id = Date . now ( ) + '_' + Math . random ( )
17
- loaderFuncsMap [ id ] = processor
18
16
return {
19
17
loader : __filename ,
20
- options : { id } ,
21
- ident : 'simple-functional-loader- ' + id
18
+ options : { processor } ,
19
+ ident : name + '- ' + Math . random ( )
22
20
}
23
21
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " simple-functional-loader" ,
3
- "version" : " 1.1.2 " ,
3
+ "version" : " 1.2.0 " ,
4
4
"description" : " use function as webpack loader option" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments