https://github.com/unshopable/melter-plugin-liquidx
A melter plugin which renders LiquidX to Liquid
https://github.com/unshopable/melter-plugin-liquidx
liquid liquidx melter melter-plugin shopify shopify-theme
Last synced: about 1 year ago
JSON representation
A melter plugin which renders LiquidX to Liquid
- Host: GitHub
- URL: https://github.com/unshopable/melter-plugin-liquidx
- Owner: unshopable
- License: mit
- Created: 2023-05-23T16:27:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-29T19:40:35.000Z (over 2 years ago)
- Last Synced: 2025-03-27T19:14:30.898Z (over 1 year ago)
- Topics: liquid, liquidx, melter, melter-plugin, shopify, shopify-theme
- Language: TypeScript
- Homepage:
- Size: 118 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# melter-plugin-liquidx
This plugin makes it super easy to get started with [LiquidX](https://github.com/unshopable/liquidx) in your next Shopify theme project with [melter](https://github.com/unshopable/melter).
## Table of Contents
- [Getting started](#getting-started)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Contributing](#contributing)
- [License](#license)
## Getting started
### Prerequisites
- [melter](https://github.com/unshopable/melter)
### Installation
First, run:
```sh
npm install --save-dev @unshopable/melter-plugin-liquidx
```
Then update (or create) your melter config:
```js
const { LiquidXPlugin } = require('@unshopable/melter-plugin-liquidx');
/** @type {import("@unshopable/melter").MelterConfig} */
const melterConfig = {
plugins: [new LiquidXPlugin()],
};
module.exports = melterConfig;
```
And that's it. Head over to the [LiquidX documentation](https://github.com/unshopable/liquidx) for more information on its features.
## Contributing
TODO
## License
[MIT](LICENSE)