How to use the @ckeditor/ckeditor5-dev-env/lib/release-tools/utils/cli.configureReleaseOptions function in @ckeditor/ckeditor5-dev-env

To help you get started, we’ve selected a few @ckeditor/ckeditor5-dev-env examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github cksource / mrgit / gulpfile.js View on Github external
gulp.task( 'release', () => {
	const ckeditor5DevEnv = require( '@ckeditor/ckeditor5-dev-env' );
	const { configureReleaseOptions } = require( '@ckeditor/ckeditor5-dev-env/lib/release-tools/utils/cli' );

	return configureReleaseOptions()
		.then( options => ckeditor5DevEnv.releaseRepository( options ) );
} );