Skip to content
This repository was archived by the owner on Aug 20, 2018. It is now read-only.

Commit dbf1fa5

Browse files
HairyRabbitjoshwiens
authored andcommitted
fix: add stringify option to output JSON object as string (#45)
1 parent 2993ea0 commit dbf1fa5

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,17 @@ import json from 'file.json';
6262
import json from 'json-loader!file.json';
6363
```
6464

65+
66+
67+
### Options
68+
69+
#### `stringify`
70+
71+
By default, the json-loader will output the json object, set this query parameter to 'true' can output the json object as a string, e.g. `require('json-loader?stringify!../index.json')`.
72+
73+
74+
75+
6576
<h2 align="center">Maintainer</h2>
6677

6778
<table>
@@ -76,6 +87,7 @@ import json from 'json-loader!file.json';
7687
</tbody>
7788
</table>
7889

90+
7991
[npm]: https://img.shields.io/npm/v/json-loader.svg
8092
[npm-url]: https://npmjs.com/package/json-loader
8193

index.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
/*
2-
MIT License http://www.opensource.org/licenses/mit-license.php
3-
Author Tobias Koppers @sokra
2+
MIT License http://www.opensource.org/licenses/mit-license.php
3+
Author Tobias Koppers @sokra
44
*/
5+
var loaderUtils = require('loader-utils');
6+
57
module.exports = function(source) {
6-
this.cacheable && this.cacheable();
7-
var value = typeof source === "string" ? JSON.parse(source) : source;
8-
this.value = [value];
9-
return "module.exports = " + JSON.stringify(value) + ";";
8+
var value = typeof source === "string" ? JSON.parse(source) : source;
9+
var options = loaderUtils.getOptions(this) || {};
10+
value = JSON.stringify(value)
11+
value = options.stringify ? `'${value}'` : value
12+
var module = this.version && this.version >= 2 ? `export default ${value};` : `module.exports = ${value};`;
13+
return module
1014
}

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/webpack/json-loader.git"
10+
},
11+
"dependencies": {
12+
"loader-utils": "^1.0.3"
1013
}
1114
}

0 commit comments

Comments
 (0)