mirror of
https://github.com/taskgenius/taskgenius-plugin.git
synced 2026-07-22 06:40:25 +00:00
- Add dedicated FluentViewSettings interface separated from experimental - Move FileTaskView to bases/ directory for better organization - Update all fluent integration to use fluentView settings - Add DEVELOPMENT.md with project development guidelines - Migrate settings with backward compatibility BREAKING CHANGE: Settings structure changed from experimental.enableFluent to fluentView.enableFluent (migration handled automatically)
9 lines
318 B
JavaScript
9 lines
318 B
JavaScript
// This config is specifically for continuing an existing beta sequence
|
|
// It does NOT set preRelease to force a new identifier
|
|
const baseConfig = require('.release-it.beta.cjs');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
// Remove the preRelease setting to allow continuing the existing sequence
|
|
preRelease: undefined
|
|
};
|