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
Prev Previous commit
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 3e4c01dcac97b4819e81fa91056e241aa9db6bb7
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 @@ -14,7 +14,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