Create your own fork, and develop changes on a new branch. It's expected you add tests, and lint and format your code before submitting a PR.
Ensure you have a compatible node version mentioned in .node-version
For example, with nodenv:
nodenv install
Using yarn package manager:
yarn install
yarn dev
Optionally specify file or folder for a specific test.
yarn test [path]
Generate dist files with: yarn build
Then, in your other project directory:
Include with local file reference: yarn add file:/path/to/stimulus-rails-nested-form
Update reference to this dir, eg:
import NestedForm from '/path/to/stimulus-rails-nested-form/dist/stimulus-rails-nested-form.umd.js' // the default module entry point is broken for webpacker
yarn lint
yarn format