8
0

release-dependencies.js 528 B

123456789101112131415161718192021
  1. #!/usr/bin/env node
  2. /**
  3. * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
  4. * For licensing, see LICENSE.md.
  5. */
  6. /* eslint-env node */
  7. 'use strict';
  8. // In order to test the whole process, you can use:
  9. // npm run release:dependencies -- --dry-run
  10. // It will create some commits but nothing will be pushed or published.
  11. require( '@ckeditor/ckeditor5-dev-env' )
  12. .releaseSubRepositories( {
  13. cwd: process.cwd(),
  14. packages: 'packages',
  15. dryRun: process.argv.includes( '--dry-run' )
  16. } );