Rocky_Mountain_Vending/.pnpm-store/v10/files/63/62ec0b631b7267c1b485caf408797a1908b1684d9d14971474bc03ee9666a28b1786b0cc8d179cc96122782fa9078035ebfc8b390fbe1dbaf78f0b8644426c
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

21 lines
401 B
Text

# Support for import attributes in acorn
## Install
```
yarn add acorn-import-attributes
```
## Usage
This module provides a plugin that can be used to extend the Acorn Parser class:
```js
const {Parser} = require('acorn');
const {importAttributes} = require('acorn-import-attributes');
Parser.extend(importAttributes).parse('...');
```
## License
This plugin is released under an MIT License.