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

ckeditor / ckeditor5-dev / 2502
90%

Build:
DEFAULT BRANCH: master
Ran 15 Jul 2019 02:08PM UTC
Jobs 1
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

pending completion
2502

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

Jobs
ID Job ID Ran Files Coverage
1 2502.1 15 Jul 2019 02:08PM UTC 0
88.86
Travis Job 2502.1
Source Files on build 2502
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #2502
  • 90dc7a1c on github
  • Prev Build on master (#2497)
  • Next Build on master (#2505)
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