2017-11-12 01:48:29 +08:00
|
|
|
/*
|
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
|
*/
|
2018-07-30 23:08:51 +08:00
|
|
|
|
2017-11-12 01:48:29 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
2018-05-19 17:09:30 +08:00
|
|
|
const parseJson = require("json-parse-better-errors");
|
2018-12-30 18:50:04 +08:00
|
|
|
const StaticExportsDependency = require("./dependencies/StaticExportsDependency");
|
2017-11-12 01:48:29 +08:00
|
|
|
|
2018-11-24 04:52:05 +08:00
|
|
|
/** @typedef {import("./NormalModule").ParserState} ParserState */
|
2017-11-12 01:48:29 +08:00
|
|
|
|
2018-11-24 04:52:05 +08:00
|
|
|
class JsonParser {
|
|
|
|
|
/**
|
|
|
|
|
* @param {string} source the source to parse
|
|
|
|
|
* @param {ParserState} state the parser state
|
|
|
|
|
* @returns {ParserState} the parser state
|
|
|
|
|
*/
|
2017-11-12 01:48:29 +08:00
|
|
|
parse(source, state) {
|
2018-05-19 18:20:05 +08:00
|
|
|
const data = parseJson(source[0] === "\ufeff" ? source.slice(1) : source);
|
2017-12-07 03:37:58 +08:00
|
|
|
state.module.buildInfo.jsonData = data;
|
|
|
|
|
state.module.buildMeta.exportsType = "named";
|
2018-05-29 20:50:40 +08:00
|
|
|
if (typeof data === "object" && data) {
|
2018-12-30 18:50:04 +08:00
|
|
|
state.module.addDependency(
|
2018-12-30 20:21:55 +08:00
|
|
|
new StaticExportsDependency(Object.keys(data), true)
|
2018-12-30 18:50:04 +08:00
|
|
|
);
|
2018-05-29 20:50:40 +08:00
|
|
|
}
|
2018-12-30 20:21:55 +08:00
|
|
|
state.module.addDependency(new StaticExportsDependency(["default"], true));
|
2017-11-12 01:48:29 +08:00
|
|
|
return state;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = JsonParser;
|