Skip to content

Commit d89bc65

Browse files
author
baitu.huang
committed
remove id
1 parent d616dfe commit d89bc65

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

index.js

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
const loaderUtils = require('loader-utils')
2-
const loaderFuncsMap = Object.create(null)
2+
const name = require('./package.json').name
33

44
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)
77
}
88

99
module.exports.createLoader = function createLoader(processor) {
1010
if (
1111
typeof processor !== 'function' ||
1212
Function.prototype.toString.call(processor).indexOf('function')
1313
) {
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)
1515
}
16-
const id = Date.now() + '_' + Math.random()
17-
loaderFuncsMap[id] = processor
1816
return {
1917
loader: __filename,
20-
options: { id },
21-
ident: 'simple-functional-loader-' + id
18+
options: { processor },
19+
ident: name + '-' + Math.random()
2220
}
2321
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-functional-loader",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "use function as webpack loader option",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)