We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Paredit's JavaScript is generated from NPM using WebPack according to https://clojurescript.org/guides/webpack
This page describes the file setup used.
webpack.config.js:
webpack.config.js
module.exports = { entry: './src/js/index.js', output: { filename: 'paredit_bundle.js' } }
yarn add paredit.js
src/js/index.js:
src/js/index.js
import paredit from 'paredit.js'; window.paredit = paredit;