taskgenius_taskgenius-plugin/.release-it.beta-continue.cjs
Quorafind 791f2cd9a9 refactor(fluent): extract fluent settings and reorganize file structure
- 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)
2025-10-08 01:34:46 +08:00

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
};