Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9474210
Replace `rollup-plugin-license` with custom Vite plugin
silverwind Apr 7, 2026
581ff3d
Remove unrelated nolyfill additions
silverwind Apr 7, 2026
c20dc3b
Break up long lines in `licensesPlugin`
silverwind Apr 7, 2026
072f650
Rename unused parameter in `generateBundle`
silverwind Apr 7, 2026
7fb3719
Remove redundant virtual module check
silverwind Apr 7, 2026
d068779
Improve license file regex
silverwind Apr 7, 2026
1a3eb9d
Address review: try/catch license read, use outDir
silverwind Apr 7, 2026
b11a66e
Add e2e test for licenses.txt
silverwind Apr 7, 2026
9a258ae
Rename licenseFileRe to licenseRe, add cross-references
silverwind Apr 7, 2026
c7ab1d5
Use rolldown-license-plugin, remove wrap-ansi
silverwind Apr 7, 2026
1ea2faf
Merge branch 'main' into remove-rollup-plugin-license
silverwind Apr 7, 2026
b76a51f
Use allow callback and wrap function from rolldown-license-plugin
silverwind Apr 7, 2026
93933aa
Update lodash and lodash-es to patched versions
silverwind Apr 7, 2026
3f783fb
Update rolldown-license-plugin to 2.0.0
silverwind Apr 8, 2026
6069042
rename var
silverwind Apr 8, 2026
a2eb96b
Update rolldown-license-plugin to 2.1.0
silverwind Apr 8, 2026
7f981c8
Add explicit match regex and anchor allow regex in license plugin
silverwind Apr 8, 2026
f56c589
Apply suggestion from @silverwind
silverwind Apr 8, 2026
c75d831
Remove unrelated lodash version bumps from lockfile
silverwind Apr 8, 2026
c9b32c5
Update rolldown-license-plugin to 2.2.0, fix allow regex
silverwind Apr 8, 2026
acf6051
Merge remote-tracking branch 'origin/main' into remove-rollup-plugin-…
silverwind Apr 8, 2026
3a5ccf8
Merge branch 'main' into remove-rollup-plugin-license
silverwind Apr 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build/generate-go-licenses.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (

// regexp is based on go-license, excluding README and NOTICE
// https://github.com/google/go-licenses/blob/master/licenses/find.go
// also defined in vite.config.ts
var licenseRe = regexp.MustCompile(`^(?i)((UN)?LICEN(S|C)E|COPYING).*$`)

// primaryLicenseRe matches exact primary license filenames without suffixes.
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"pdfobject": "2.3.1",
"perfect-debounce": "2.1.0",
"postcss": "8.5.9",
"rollup-plugin-license": "3.7.0",
"rolldown-license-plugin": "2.2.0",
"sortablejs": "1.15.7",
"swagger-ui-dist": "5.32.2",
"tailwindcss": "3.4.19",
Expand All @@ -73,8 +73,7 @@
"vite-string-plugin": "2.0.2",
"vue": "3.5.32",
"vue-bar-graph": "2.2.0",
"vue-chartjs": "5.3.3",
"wrap-ansi": "10.0.0"
"vue-chartjs": "5.3.3"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
Expand Down
Loading