Skip to content

Commit f102bd1

Browse files
committed
Make loader seperable
1 parent 595be02 commit f102bd1

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ module.exports = function(source) {
77
var value = JSON.parse(source);
88
this.values = [value];
99
return "module.exports = " + JSON.stringify(value, undefined, "\t");
10-
}
10+
}
11+
module.exports.seperable = true;

package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
{
2-
"name": "json-loader",
3-
"version": "0.1.8",
4-
"author": "Tobias Koppers @sokra",
5-
"description": "json loader module for webpack",
6-
"licenses": [
7-
{
8-
"type": "MIT",
9-
"url": "http://www.opensource.org/licenses/mit-license.php"
10-
}
11-
],
12-
"license": "MIT"
1+
{
2+
"name": "json-loader",
3+
"version": "0.2.0",
4+
"author": "Tobias Koppers @sokra",
5+
"description": "json loader module for webpack",
6+
"licenses": [
7+
{
8+
"type": "MIT",
9+
"url": "http://www.opensource.org/licenses/mit-license.php"
10+
}
11+
],
12+
"license": "MIT"
1313
}

0 commit comments

Comments
 (0)