Skip to content

Commit

Permalink
Comment fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bengarrett committed Feb 29, 2024
1 parent c1fce92 commit 7b7d063
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,6 @@ func CSS(name string) api.BuildOptions {
}
}

/*!
* Bootstrap v5.3.0 (https://getbootstrap.com/)
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/

/* readme.min.js */

// JS are the options to build the minified JS files.
func JS(name string) api.BuildOptions {
min := fmt.Sprintf("%s.min.js", name)
Expand All @@ -62,8 +54,9 @@ func JS(name string) api.BuildOptions {
return api.BuildOptions{
EntryPoints: []string{entry},
Outfile: output,
Write: true,
Bundle: false,
Target: api.ES2020, // specify JS language version
Write: true, // write the output file to disk
Bundle: false, // bundle dependencies into the output file
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
Expand Down

0 comments on commit 7b7d063

Please sign in to comment.