https://github.com/wwalc/ckeditor5-webpack
A dummy project which shows how to bundle CKEditor 5 with webpack 2.
https://github.com/wwalc/ckeditor5-webpack
ckeditor ckeditor5 webpack webpack2
Last synced: about 1 month ago
JSON representation
A dummy project which shows how to bundle CKEditor 5 with webpack 2.
- Host: GitHub
- URL: https://github.com/wwalc/ckeditor5-webpack
- Owner: wwalc
- License: other
- Created: 2017-03-01T12:06:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-08T11:41:53.000Z (over 9 years ago)
- Last Synced: 2025-06-02T22:42:38.478Z (about 1 year ago)
- Topics: ckeditor, ckeditor5, webpack, webpack2
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## CKEditor 5 – webpack example
This is a dummy project which shows how to bundle CKEditor 5 with webpack (version 2).
### Quick start
1. Clone this repository:
git clone https://github.com/wwalc/ckeditor5-webpack.git
cd ckeditor5-webpack
2. Create a bundle:
npm install
npm run bundle
3. Open index.html in your browser.
### Official webpack support
Follow https://github.com/ckeditor/ckeditor5/issues/139 to stay up to date.
### About this project
This is not an official documentation. It is a mere mix of webpack configuration used by [ckeditor5.github.io](https://github.com/CKEditor5/ckeditor5.github.io) with
code posted by Ilya Semenov in [this comment](https://github.com/ckeditor/ckeditor5/issues/139#issuecomment-276876222), which I'm currently using for playing with CKEditor 5.
The created bundle consists of two files: `build/css/styles.css` and `build/js/app.bundle.js`.
If you would like to build everything into a single file, check the webpack config of [ckeditor5.github.io](https://github.com/CKEditor5/ckeditor5.github.io).