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>
21 lines
401 B
Text
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.
|