Rocky_Mountain_Vending/.pnpm-store/v10/files/79/aa031d48bfcc6ece395332f53f395b85aa6f63f10ba205acd75fc4b97b88afa5f81b41b9494dfdd6c6e9f8099c1ac1b95d2625bf5ff646d63fbedf771f3e7b
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

40 lines
No EOL
1 KiB
Text

/**
* **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} ` : '<css input> ';
this.message += reason;
const code = error.showSourceCode();
if (code) {
this.message += `\n\n${code}\n`;
}
this.stack = false;
}
}
//# sourceMappingURL=Error.js.map