/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/Error.js (1048B)
/** * **PostCSS Syntax Error** * * Loader wrapper for postcss syntax errors * * @class SyntaxError * @extends Error * * @param {Object} err CssSyntaxError */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return PostCSSSyntaxError; } }); class PostCSSSyntaxError extends Error { constructor(error){ super(error); const { line, column, reason, plugin, file } = error; this.name = 'SyntaxError'; this.message = `${this.name}\n\n`; if (typeof line !== 'undefined') { this.message += `(${line}:${column}) `; } this.message += plugin ? `${plugin}: ` : ''; this.message += file ? `${file} ` : ' '; this.message += reason; const code = error.showSourceCode(); if (code) { this.message += `\n\n${code}\n`; } this.stack = false; } } //# sourceMappingURL=Error.js.map