Files
Remi Rousselet c2121e9b07 Migrate to pub workspaces (#4021)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **Chores**
- Updated all Dart SDK constraints to "^3.6.0", added a unified
workspace resolution key, and removed obsolete local dependency override
configurations.
- **CI/CD Improvements**
- Streamlined workflows and refined testing/coverage scripts by removing
outdated steps.
- **Tooling Enhancements**
- Introduced a new build generation script to automate build-runner
tasks.
- **Refactor**
- Applied minor code style refinements, including simplified constructor
syntax and streamlined control flow.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2025-03-23 22:27:51 +01:00

41 lines
710 B
TypeScript

import {
riverpodVersion,
riverpodAnnotationVersion,
riverpodGeneratorVersion,
riverpodLintVersion,
} from "../../../src/versions";
const codegen = `name: my_app_name
environment:
sdk: ^3.6.0
dependencies:
riverpod: ^${riverpodVersion}
riverpod_annotation: ^${riverpodAnnotationVersion}
dev_dependencies:
build_runner:
custom_lint:
riverpod_generator: ^${riverpodGeneratorVersion}
riverpod_lint: ^${riverpodLintVersion}
`;
const raw = `name: my_app_name
environment:
sdk: ^3.6.0
dependencies:
riverpod: ^${riverpodVersion}
dev_dependencies:
custom_lint:
riverpod_lint: ^${riverpodLintVersion}
`;
export default {
raw,
hooks: raw,
codegen,
hooksCodegen: codegen,
};