| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/usr/bin/env node
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* eslint-env node */
- 'use strict';
- // In order to use the same version for all packages (including builds and ckeditor5 itself), you can call:
- // npm run changelog [newVersion]
- const devEnv = require( '@ckeditor/ckeditor5-dev-env' );
- const commonOptions = {
- cwd: process.cwd(),
- packages: 'packages',
- // `newVersion` is mostly used for testing purposes. It allows generating changelog that contains the same version for all packages.
- newVersion: process.argv[ 2 ] || null
- };
- const editorBuildsGlob = '@ckeditor/ckeditor5-build-*';
- const optionsForDependencies = Object.assign( {}, commonOptions, {
- skipPackages: editorBuildsGlob,
- skipMainRepository: true
- } );
- const optionsForBuilds = Object.assign( {}, commonOptions, {
- scope: editorBuildsGlob
- } );
- Promise.resolve()
- .then( () => devEnv.generateChangelogForSubRepositories( optionsForDependencies ) )
- .then( () => devEnv.generateSummaryChangelog( optionsForBuilds ) )
- .then( () => {
- console.log( 'Done!' );
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|