-
-
Notifications
You must be signed in to change notification settings - Fork 713
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: feature lifecycle complete and uncomplete #6927
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Ignored Deployment
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ Code Health Quality Gates: OK
- Declining Code Health: 1 findings(s) 🚩
@@ -79,11 +90,6 @@ export class FeatureLifecycleService extends EventEmitter { | |||
), | |||
); | |||
}); | |||
this.eventStore.on(FEATURE_COMPLETED, async (event) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed, this event is not coming from anything external.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ Code Health Quality Gates: OK
- Declining Code Health: 1 findings(s) 🚩
src/lib/features/feature-lifecycle/feature-lifecycle-controller.ts
Outdated
Show resolved
Hide resolved
src/lib/features/feature-lifecycle/feature-lifecycle-service.ts
Outdated
Show resolved
Hide resolved
src/lib/features/feature-lifecycle/feature-lifecycle.e2e.test.ts
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ Code Health Quality Gates: OK
- Declining Code Health: 1 findings(s) 🚩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ Code Health Quality Gates: OK
- Declining Code Health: 1 findings(s) 🚩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ Code Health Quality Gates: OK
- Declining Code Health: 1 findings(s) 🚩
- Improving Code Health: 1 findings(s) ✅
@@ -1,9 +1,11 @@ | |||
import { | |||
CLIENT_METRICS, | |||
FEATURE_ARCHIVED, | |||
FEATURE_COMPLETED, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ New issue: String Heavy Function Arguments
In this module, 57.1% of all arguments to its 10 functions are strings. The threshold for string arguments is 39.0%
eventStore.emit(FEATURE_COMPLETED, { featureName }); | ||
await reachedStage('completed'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ No longer an issue: Large Method
'can insert and read lifecycle stages' is no longer above the threshold for lines of code
Creating a way to complete and uncomplete feature.