/opt/canhelp/node_modules/next/dist/build/webpack/loaders/postcss-loader/src
NameSizeModeActions
Error.d.ts2700644editdlrm
Error.js10480644editdlrm
Error.js.map17670644editdlrm
index.d.ts2460644editdlrm
index.js45290644editdlrm
index.js.map69880644editdlrm
utils.d.ts2290644editdlrm
utils.js31600644editdlrm
utils.js.map42290644editdlrm
Warning.d.ts2840644editdlrm
Warning.js8630644editdlrm
Warning.js.map13860644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/Warning.js (863B)
/** * **PostCSS Plugin Warning** * * Loader wrapper for postcss plugin warnings (`root.messages`) * * @class Warning * @extends Error * * @param {Object} warning PostCSS Warning */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return Warning; } }); class Warning extends Error { constructor(warning){ super(warning); const { text, line, column, plugin } = warning; this.name = 'Warning'; this.message = `${this.name}\n\n`; if (typeof line !== 'undefined') { this.message += `(${line}:${column}) `; } this.message += plugin ? `${plugin}: ` : ''; this.message += text; this.stack = false; } } //# sourceMappingURL=Warning.js.map