• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ckeditor / ckeditor5-dev / 2502 / 1
90%
master: 90%

Build:
DEFAULT BRANCH: master
Ran 15 Jul 2019 02:08PM UTC
Files 85
Run time 5s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

15 Jul 2019 02:04PM UTC coverage: 88.861% (-0.08%) from 88.944%
2502.1

push

travis-ci

web-flow
Merge pull request #497 from ckeditor/t/496

Feature: Before starting the publishing process on NPM, the task will check whether the current user is logged to npm. Removed `tasks.releaseRepository()`. It's now possible to release a single repo with the multi-repo release task. Closes #496. Closes #498.

In order to release a single repository, first, you need to bump its version. Then you will be able to publish changes. For bumping version, you can use the following code:

```js
require( '@ckeditor/ckeditor5-dev-env' )
	.bumpVersions( {
		cwd: process.cwd(),
		packages: null, // <-- It means that you want to call the script for single package.
		dryRun: process.argv.includes( '--dry-run' )
	} );
```

For publishing changes:

```js
require( '@ckeditor/ckeditor5-dev-env' )
	.releaseSubRepositories( {
		cwd: process.cwd(),
		packages: null, // <-- It means that you want to call the script for single package.
		dryRun: process.argv.includes( '--dry-run' )
	} );
```

You can call both scripts with `--dry-run` option that allows you testing the entire process. Those scripts won't publish anything in this mode.

BREAKING CHANGE: `tasks.releaseRepository()` has been removed. Use `tasks.bumpVersions()` and `tasks.releaseSubRepositories()` instead.

699 of 830 branches covered (84.22%)

Branch coverage included in aggregate %.

2157 of 2384 relevant lines covered (90.48%)

18.69 hits per line

Source Files on job 2502.1
  • Tree
  • List 0
  • Changed 28
  • Source Changed 2
  • Coverage Changed 28
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Build 2262
  • Travis Job 2502.1
  • 90dc7a1c on github
  • Prev Job for on master (#2497.1)
  • Next Job for on master (#2505.1)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc