Merge pull request #2 from ckeditor/t/1
Feature: Implement the document editor build on top of the decoupled editor. Closes #1.
Showing
CONTRIBUTING.md
0 → 100644
LICENSE.md
0 → 100644
README.md
0 → 100644
bin/build-ckeditor.sh
0 → 100755
bin/create-entry-file.js
0 → 100755
build-config.js
0 → 100644
build/ckeditor.js
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
build/ckeditor.js.map
0 → 100644
This diff is collapsed.
build/translations/ast.js
0 → 100644
build/translations/bg.js
0 → 100644
build/translations/da.js
0 → 100644
build/translations/de.js
0 → 100644
build/translations/el.js
0 → 100644
build/translations/en-au.js
0 → 100644
build/translations/eo.js
0 → 100644
build/translations/es.js
0 → 100644
build/translations/et.js
0 → 100644
build/translations/fi.js
0 → 100644
build/translations/fr.js
0 → 100644
build/translations/gl.js
0 → 100644
build/translations/gu.js
0 → 100644
build/translations/hr.js
0 → 100644
build/translations/hu.js
0 → 100644
build/translations/it.js
0 → 100644
build/translations/ja.js
0 → 100644
build/translations/km.js
0 → 100644
build/translations/kn.js
0 → 100644
build/translations/ko.js
0 → 100644
build/translations/ku.js
0 → 100644
build/translations/nb.js
0 → 100644
build/translations/ne.js
0 → 100644
build/translations/nl.js
0 → 100644
build/translations/oc.js
0 → 100644
build/translations/pl.js
0 → 100644
build/translations/pt-br.js
0 → 100644
build/translations/pt.js
0 → 100644
build/translations/ro.js
0 → 100644
build/translations/ru.js
0 → 100644
build/translations/sk.js
0 → 100644
build/translations/sv.js
0 → 100644
build/translations/tr.js
0 → 100644
build/translations/uk.js
0 → 100644
build/translations/zh-cn.js
0 → 100644
build/translations/zh.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "@ckeditor/ckeditor5-build-decoupled-document", | ||
"version": "0.0.1", | ||
"description": "CKEditor 5 document editor build.", | ||
"keywords": [ | ||
"ckeditor5", | ||
"ckeditor5-build", | ||
"text editor", | ||
"WYSIWYG", | ||
"rich-text editor" | ||
], | ||
"main": "./build/ckeditor.js", | ||
"files": [ | ||
"build" | ||
], | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-adapter-ckfinder": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-alignment": "^0.0.1", | ||
"@ckeditor/ckeditor5-autoformat": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-block-quote": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-dev-utils": "^7.0.3", | ||
"@ckeditor/ckeditor5-dev-webpack-plugin": "^3.0.4", | ||
"@ckeditor/ckeditor5-easy-image": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-editor-decoupled": "^0.0.1", | ||
"@ckeditor/ckeditor5-essentials": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-font": "^0.0.1", | ||
"@ckeditor/ckeditor5-heading": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-highlight": "^0.0.1", | ||
"@ckeditor/ckeditor5-image": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-link": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-list": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-upload": "^1.0.0-alpha.2", | ||
"babel-minify-webpack-plugin": "^0.3.0", | ||
"postcss-loader": "^2.0.10", | ||
"raw-loader": "^0.5.1", | ||
"style-loader": "^0.19.1", | ||
"webpack": "^3.10.0", | ||
"webpack-sources": "1.0.1" | ||
}, | ||
"engines": { | ||
"node": ">=6.0.0", | ||
"npm": ">=3.0.0" | ||
}, | ||
"author": "CKSource (http://cksource.com/)", | ||
"license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)", | ||
"homepage": "https://ckeditor5.github.io", | ||
"bugs": "https://github.com/ckeditor/ckeditor5-build-decoupled-document/issues", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ckeditor/ckeditor5-build-decoupled-document.git" | ||
}, | ||
"scripts": { | ||
"build": "npm run create-entry-file && npm run build-ckeditor", | ||
"create-entry-file": "node bin/create-entry-file.js", | ||
"build-ckeditor": "sh bin/build-ckeditor.sh", | ||
"preversion": "npm run build; if [ -n \"$(git status src/ckeditor.js build/ --porcelain)\" ]; then git add -u src/ckeditor.js build/ && git commit -m 'Internal: Build.'; fi" | ||
} | ||
} |
sample/index.html
0 → 100644
src/ckeditor.js
0 → 100644
tests/ckeditor.js
0 → 100644
tests/manual/ckeditor.html
0 → 100644
tests/manual/ckeditor.js
0 → 100644
tests/manual/ckeditor.md
0 → 100644
tests/manual/sample.jpg
0 → 100644
112 KB
webpack.config.js
0 → 100644