-
Notifications
You must be signed in to change notification settings - Fork 375
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: support marking pkg as Draft #790
Conversation
I believe that "private" is the most appropriate option because it indicates a desire to not share the content publicly, regardless of whether it's in progress or finished. My second preferred choice would be "draft," as it conveys a similar meaning commonly used in publication systems such as blogs. Btw, what about replacing |
I would prefer |
Um. I'm not sure what's right. Since we already have Or we can use custom // Parsed gno.mod file.
type File struct {
- Module *modfile.Module
+ Module GnoModule
Go *modfile.Go
Require []*modfile.Require
Replace []*modfile.Replace
Syntax *modfile.FileSyntax
}
+type GnoModule struct {
+ Mod module.Version
+ Draft bool
+ Syntax *Line
+} PS: I'm fine with both. replacing/keeping |
For now replaced |
I wasn't aware of this. Let's keep both then. |
Description
See (#763 (comment))
Suggested candidates:
WIP
(work-in-progress)Experimental
Draft
(hugo)Unpublishable
Restricted
Private
(NPM)PS: Open for better names.
cc: @tbruyelle @moul