workflow: updated rollup related "major" deps

This commit is contained in:
Roberto Tonino 2021-08-09 18:33:31 +02:00
parent 84655ab11a
commit 29e76323e9
4 changed files with 517 additions and 209 deletions

View File

@ -1,6 +1,6 @@
# deemix-webui
This is just the WebUI for deemix, it should be used with deemix-pyweb or something like that.
This is just the WebUI for deemix, it should be used with deemix-gui or something like that.
If you are a web developer and want to contribute to this project, please read the [COMPILE-UI](COMPILE-UI.md) file.
# "Hidden" features
@ -12,6 +12,10 @@ If you are a web developer and want to contribute to this project, please read t
- `ALT+Right` goes forward to the next page, if present (like would happen in the browser)
- Custom context menu: on certain elements, like download buttons or album covers, when opening the context menu, a custom one with more options will appear instead of the default one
# Deps
- `rollup-plugin-vue@6` cannot be installed until vue is updated to v3
# License
This program is free software: you can redistribute it and/or modify

View File

@ -33,8 +33,8 @@
"@nuxtjs/eslint-config": "6.0.1",
"@rollup/plugin-alias": "3.1.5",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@rollup/plugin-replace": "2.4.2",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-replace": "3.0.0",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
@ -50,10 +50,10 @@
"prettier": "2.3.2",
"rimraf": "3.0.2",
"rollup": "2.56.1",
"rollup-plugin-analyzer": "3.3.0",
"rollup-plugin-postcss": "3.1.8",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-postcss": "4.0.0",
"rollup-plugin-svg": "2.0.0",
"rollup-plugin-vue": "4.2.0",
"rollup-plugin-vue": "5.1.9",
"sass": "1.37.5",
"tailwindcss": "1.9.6",
"typescript": "4.3.5",

View File

@ -40,8 +40,11 @@ export default {
}),
// Needed for Vue imports
replace({
preventAssignment: true,
values: {
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
__VER__: JSON.stringify(version)
}
}),
resolve(), // Tells Rollup how to find imported modules in node_modules
commonjs(), // Converts imported modules to ES modules, if necessary

703
yarn.lock

File diff suppressed because it is too large Load Diff