You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run rpm update I get some issues. First I get this warning repeatedly:
(node:1126) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [TLSSocket]. Use emitter.setMaxListeners() to increase limit
Then I get a warning about 3 low severity vulnerabilities. Then if I try "nom audit fix --force" I get the following error:
npm WARN audit Updating @sveltejs/kit to 0.0.30, which is a SemVer major change.
npm WARN audit Updating @sveltejs/adapter-auto to 0.0.1, which is a SemVer major change.
npm ERR! code EUNSUPPORTEDPROTOCOL
npm ERR! Unsupported URL Type "workspace:": workspace:*
This has been going on for maybe a month, and a while back I was getting a warning about "semver" so I added an override to package.json. This cured the original warning. I've tried updating with and without the override but nothing seems to help.
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
//
// MH 20230803 added "{polyfill: false}" below:
adapter: adapter({polyfill: false}),
alias: {
$routes: 'src/routes',
$stores: 'src/stores',
$lib: 'src/lib',
$db: 'src/lib/db',
$src: 'src',
$static: 'static',
},
},
vitePlugin: {
inspector: true,
}
};
export default config;
I'm fairly new to node etc. and have no idea where to look. Searching DuckDuckGo and Git hasn't produced anything useful.
Is this something that's likely to go away in a future update or should I be worried?
I also tried deleting the node modules and sveltekit folders but that made no difference. I'm on an up to date Mac and have also tried it on an up to date Windows 10 box but got the same issues.
Describe the bug
When I run rpm update I get some issues. First I get this warning repeatedly:
(node:1126) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [TLSSocket]. Use emitter.setMaxListeners() to increase limit
Then I get a warning about 3 low severity vulnerabilities. Then if I try "nom audit fix --force" I get the following error:
This has been going on for maybe a month, and a while back I was getting a warning about "semver" so I added an override to package.json. This cured the original warning. I've tried updating with and without the override but nothing seems to help.
This is my package.json:
And this is my svelte.config.javascript:
I'm fairly new to node etc. and have no idea where to look. Searching DuckDuckGo and Git hasn't produced anything useful.
Is this something that's likely to go away in a future update or should I be worried?
I also tried deleting the node modules and sveltekit folders but that made no difference. I'm on an up to date Mac and have also tried it on an up to date Windows 10 box but got the same issues.
Any advice would be much appreciated.
Thanks
Mark
Reproduction
NA
Logs
System Info
Severity
annoyance
The text was updated successfully, but these errors were encountered: