Commit 13ec68c 1 parent 0c84efe commit 13ec68c Copy full SHA for 13ec68c
File tree 3 files changed +18
-6
lines changed
3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change
1
+ # Fractor release howto
2
+
3
+ We use [ https://github.com/symplify/monorepo-builder ] ( symplify/monorepo-builder ) for releasing new versions.
4
+
5
+ ## How to release a new version
6
+
7
+ To release version 0.1.0, run this
8
+
9
+ vendor/bin/monorepo-builder release v0.1
10
+
11
+ To release 0.1.1, run
12
+
13
+ vendor/bin/monorepo-builder release v0.1.1
14
+
15
+ These commands can be tested by appending ` --dry-run `
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ declare (strict_types=1 );
3
4
4
5
use a9f \Fractor \Configuration \FractorConfiguration ;
5
6
use a9f \Typo3Fractor \Set \Typo3LevelSetList ;
6
7
7
8
return FractorConfiguration::configure ()
8
9
->withPaths ([__DIR__ . '/output/ ' ])
9
- ->withSets ([
10
- Typo3LevelSetList::UP_TO_TYPO3_13
11
- ]);
10
+ ->withSets ([Typo3LevelSetList::UP_TO_TYPO3_13 ]);
Original file line number Diff line number Diff line change 3
3
declare (strict_types=1 );
4
4
5
5
return (include __DIR__ . '/.build/ecs.php ' )
6
- ->withPaths ([
7
- __DIR__ . '/e2e ' ,
8
- ])
6
+ ->withPaths ([__DIR__ . '/e2e ' ])
9
7
->withRootFiles ()
10
8
;
You can’t perform that action at this time.
0 commit comments