Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
30 lines
No EOL
849 B
Text
30 lines
No EOL
849 B
Text
/**
|
|
* **PostCSS Syntax Error**
|
|
*
|
|
* Loader wrapper for postcss syntax errors
|
|
*
|
|
* @class SyntaxError
|
|
* @extends Error
|
|
*
|
|
* @param {Object} err CssSyntaxError
|
|
*/ export default 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} ` : '<css input> ';
|
|
this.message += reason;
|
|
const code = error.showSourceCode();
|
|
if (code) {
|
|
this.message += `\n\n${code}\n`;
|
|
}
|
|
this.stack = false;
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=Error.js.map |