We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efcbee5 commit 796cdc7Copy full SHA for 796cdc7
1 file changed
cmd_publish.go
@@ -33,8 +33,8 @@ var publishCmd = &cobra.Command{
33
zipWriter := zip.NewWriter(zipPipeWriter)
34
35
selected := make(map[string]bool)
36
- optionalFiles := []string{"README.md"}
37
- requiredFiles := []string{"package.json", "package-lock.json", "build/index.js"}
+ optionalFiles := []string{"README.md", "package-lock.json"}
+ requiredFiles := []string{"package.json", "build/index.js"}
38
for _, name := range optionalFiles {
39
selected[filepath.Clean(name)] = true
40
}
0 commit comments