Package Exports
- @edaptio/ckeditor5-build-super
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@edaptio/ckeditor5-build-super) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
###CKEditor5 build for Edaptio
Structure
master
branch holds stable builds.develop
branch holds features under development.
How to develop
- Switch to
develop
branch. - Execute
git pull
. - Run
npm install
. - Create branch
feature/feature-name
. - Write code.
- To build run
yarn build
. - To be able to review your changes you can use
sample/index.html
. Please note that it's better to use local web server (like one provided withserve
npm package) instead openingsample/index.html
from file system. - Commit and push your changes to repository.
- Merge
feature/feature-name
branch to develop branch via pull request.
How to publish npm package
- Merge code from
develop
branch tomaster
. - Add version tag.
- Form project folder run
npm publish --access public
Notes
- To be able to publish npm package you should be a member of edaptio org (https://www.npmjs.com/settings/edaptio/packages).
- To unpublish npm package use
npm unpublish @edaptio/ckeditor5-build-super --force