Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Next Next commit
fix(licenses): SPDF license in package.json and khroma
khroma has a MIT `license` file but nothing set in their package.json.
`rollup-license-plugin` seems to not understand that.

Signed-off-by: Max <[email protected]>
  • Loading branch information
max-nextcloud committed Dec 16, 2024
commit 5a4e7ed3d6023862820141fa150efafe95febb1c
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"role": "Developer"
}
],
"license": "agpl",
"license": "AGPL-3.0-or-later",
"type": "module",
"files": [
"dist"
Expand Down
6 changes: 5 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ const config = createAppConfig({
init: path.join(__dirname, 'src', 'init.js'),
}, {
createEmptyCSSEntryPoints: true,
extractLicenseInformation: true,
extractLicenseInformation: {
overwriteLicenses: {
khroma: 'MIT',
},
},
thirdPartyLicense: false,
config: {
resolve: {
Expand Down