How to use the @ckeditor/ckeditor5-dev-env.generateChangelogForSinglePackage 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 ckeditor / ckeditor5-angular / scripts / changelog.js View on Github external
/**
 * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md.
 */

'use strict';

/* eslint-env node */

/**
 * Scripts for generating the changelog before starting the release process.
 */

require( '@ckeditor/ckeditor5-dev-env' ).generateChangelogForSinglePackage();
github ckeditor / ckeditor5-vue / scripts / changelog.js View on Github external
#!/usr/bin/env node

/**
 * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md.
 */

'use strict';

/* eslint-env node */

/**
 * Scripts for generating the changelog before starting the release process.
 */

require( '@ckeditor/ckeditor5-dev-env' ).generateChangelogForSinglePackage();
github ckeditor / ckeditor5-react / scripts / changelog.js View on Github external
#!/usr/bin/env node

/**
 * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md.
 */

'use strict';

/* eslint-env node */

/**
 * Scripts for generating the changelog before starting the release process.
 */

require( '@ckeditor/ckeditor5-dev-env' ).generateChangelogForSinglePackage();
github cksource / mrgit / gulpfile.js View on Github external
gulp.task( 'changelog', () => {
	return require( '@ckeditor/ckeditor5-dev-env' ).generateChangelogForSinglePackage();
} );
github cksource / mrgit / scripts / changelog.js View on Github external
#!/usr/bin/env node

/**
 * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md.
 */

'use strict';

require( '@ckeditor/ckeditor5-dev-env' ).generateChangelogForSinglePackage();