Parcourir la source

Merge branch 'master' into t/45

Piotrek Koszuliński il y a 9 ans
Parent
commit
192aeb1d47

+ 26 - 0
packages/ckeditor5-undo/.travis.yml

@@ -0,0 +1,26 @@
+sudo: required
+dist: trusty
+addons:
+  apt:
+    sources:
+      - google-chrome
+    packages:
+      - google-chrome-stable
+language: node_js
+node_js:
+  - "6"
+cache:
+  - node_modules
+before_install:
+  - export CHROME_BIN=chromium-browser
+  - export DISPLAY=:99.0
+  - sh -e /etc/init.d/xvfb start
+install:
+  - npm install
+  - npm install @ckeditor/ckeditor5-dev-tests
+  - npm install codeclimate-test-reporter
+script:
+  - node_modules/.bin/ckeditor5-dev-tests --coverage
+after_success:
+  - sed -i.backup 's/\.build\/ckeditor5\/[^\/]*/src/g' .build/coverage/lcov.info
+  - node_modules/.bin/codeclimate-test-reporter < .build/coverage/lcov.info

+ 5 - 0
packages/ckeditor5-undo/README.md

@@ -1,6 +1,11 @@
 CKEditor 5 Undo Manager
 ========================================
 
+[![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-undo.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-undo)
+[![Build Status](https://travis-ci.org/ckeditor/ckeditor5-undo.svg?branch=master)](https://travis-ci.org/ckeditor/ckeditor5-undo)
+[![Test Coverage](https://codeclimate.com/github/ckeditor/ckeditor5-undo/badges/coverage.svg)](https://codeclimate.com/github/ckeditor/ckeditor5-undo/coverage)
+[![Code Climate](https://codeclimate.com/github/ckeditor/ckeditor5-undo/badges/gpa.svg)](https://codeclimate.com/github/ckeditor/ckeditor5-undo)
+[![Dependency Status](https://david-dm.org/ckeditor/ckeditor5-undo/status.svg)](https://david-dm.org/ckeditor/ckeditor5-undo#info=dependencies)
 [![devDependency Status](https://david-dm.org/ckeditor/ckeditor5-undo/dev-status.svg)](https://david-dm.org/ckeditor/ckeditor5-undo#info=devDependencies)
 
 Undo manager for CKEditor 5. More information about the project can be found at the following URL: <https://github.com/ckeditor/ckeditor5-undo>.

+ 12 - 1
packages/ckeditor5-undo/package.json

@@ -3,9 +3,20 @@
   "version": "0.4.0",
   "description": "Undo manager for CKEditor 5.",
   "keywords": [],
-  "dependencies": {},
+  "dependencies": {
+    "ckeditor5-core": "ckeditor/ckeditor5-core",
+    "ckeditor5-engine": "ckeditor/ckeditor5-engine",
+    "ckeditor5-ui": "ckeditor/ckeditor5-ui",
+    "ckeditor5-ui-default": "ckeditor/ckeditor5-ui-default"
+  },
   "devDependencies": {
     "@ckeditor/ckeditor5-dev-lint": "^1.0.1",
+    "ckeditor5-basic-styles": "ckeditor/ckeditor5-basic-styles",
+    "ckeditor5-editor-classic": "ckeditor/ckeditor5-editor-classic",
+    "ckeditor5-enter": "ckeditor/ckeditor5-enter",
+    "ckeditor5-heading": "ckeditor/ckeditor5-heading",
+    "ckeditor5-paragraph": "ckeditor/ckeditor5-paragraph",
+    "ckeditor5-typing": "ckeditor/ckeditor5-typing",
     "gulp": "^3.9.0",
     "guppy-pre-commit": "^0.4.0"
   },