Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
disable prefs.js for shell version 40
Browse files Browse the repository at this point in the history
  • Loading branch information
mymindstorm committed Apr 3, 2021
1 parent 42d5e4b commit 57b2122
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"shell-version": ["3.36", "3.38"],
"shell-version": ["3.36", "3.38", "40"],
"uuid": "volume-mixer@evermiss.net",
"orginal-author": "mymindstorm@evermiss.net",
"name": "Application Volume Mixer",
Expand Down
40 changes: 20 additions & 20 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@ export default [
commonjs()
],
},
{
input: 'src/prefs.ts',
output: {
file: `dist/prefs.js`,
format: 'iife',
name: 'prefs',
exports: 'default',
// ???
footer: [
'var init = prefs.init;',
'var buildPrefsWidget = prefs.buildPrefsWidget;',
].join('\n')
},
plugins: [
typescript({
tsconfig: './tsconfig.json',
}),
commonjs()
],
}
// {
// input: 'src/prefs.ts',
// output: {
// file: `dist/prefs.js`,
// format: 'iife',
// name: 'prefs',
// exports: 'default',
// // ???
// footer: [
// 'var init = prefs.init;',
// 'var buildPrefsWidget = prefs.buildPrefsWidget;',
// ].join('\n')
// },
// plugins: [
// typescript({
// tsconfig: './tsconfig.json',
// }),
// commonjs()
// ],
// }
];

0 comments on commit 57b2122

Please sign in to comment.