tiptap-editor-stck
v1.2.14
Published
## Compiles and hot-reloads for development ``` npm run dev ```
Downloads
82
Readme
tiptap-editor-stck
Compiles and hot-reloads for development
npm run dev
build
npm run build
Publish on NPM
npm publish
How to do the local development with any project
https://hackernoon.com/node-js-yarning-for-local-packages-9a7970edea7
if you have tiptap-editor and web in same directory, then
cd web
yarn add file:./../tiptap-editor/
Remote testing
- run
npm run build && npm pack
- above will generate tgz package, something like -
tiptap-editor-stck-1.0.3.tgz
. - scp package to server -
scp tiptap-editor-stck-1.0.3.tgz [email protected]:/home/user/<project>
- change package.json of remote "project" to -
"tiptap-editor-stck": "file:tiptap-editor-stck-1.0.3.tgz"
Contribute
- Update code
- Update version in package.json (X.Y.Z, Z for bug fixes, Y for new feature, X for breaking changes)
- update CHNANGELOG
npm run build
- Publish new version on NPM,
npm publish