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

Commit e528e1d

Browse files
sokrajoshwiens
authored andcommitted
revert: add stringify option to output JSON object as string (#43) (#52)
1 parent fa6392c commit e528e1d

File tree

3 files changed

+8
-27
lines changed

3 files changed

+8
-27
lines changed

README.md

-12
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,6 @@ 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-
7665
<h2 align="center">Maintainer</h2>
7766

7867
<table>
@@ -87,7 +76,6 @@ By default, the json-loader will output the json object, set this query paramete
8776
</tbody>
8877
</table>
8978

90-
9179
[npm]: https://img.shields.io/npm/v/json-loader.svg
9280
[npm-url]: https://npmjs.com/package/json-loader
9381

index.js

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
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-
75
module.exports = function(source) {
8-
var value = typeof source === "string" ? JSON.parse(source) : source;
9-
var options = loaderUtils.getOptions(this) || {};
10-
value = JSON.stringify(value)
11-
.replace(/\u2028/g, '\\u2028')
12-
.replace(/\u2029/g, '\\u2029');
13-
value = options.stringify ? `'${value}'` : value
14-
var module = this.version && this.version >= 2 ? `export default ${value};` : `module.exports = ${value};`;
15-
return module
6+
var value = typeof source === "string" ? JSON.parse(source) : source;
7+
value = JSON.stringify(value)
8+
.replace(/\u2028/g, '\\u2028')
9+
.replace(/\u2029/g, '\\u2029');
10+
var module = this.version && this.version >= 2 ? `export default ${value};` : `module.exports = ${value};`;
11+
return module;
1612
}

package.json

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

0 commit comments

Comments
 (0)