|
|
@@ -9,8 +9,13 @@
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
+// In order to test the whole process, you can use:
|
|
|
+// npm run release:dependencies -- --dry-run
|
|
|
+// It will create some commits but nothing will be pushed or published.
|
|
|
+
|
|
|
require( '@ckeditor/ckeditor5-dev-env' )
|
|
|
.releaseSubRepositories( {
|
|
|
cwd: process.cwd(),
|
|
|
- packages: 'packages'
|
|
|
+ packages: 'packages',
|
|
|
+ dryRun: process.argv.includes( '--dry-run' )
|
|
|
} );
|