fix: migrate to standard import attributes (#8803)

This commit is contained in:
Brooooooklyn
2024-11-13 08:52:05 +00:00
parent c32b29a293
commit c0f6a60a66
4 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ const semver = await import('semver').catch(
() => import('../packages/backend/server/node_modules/semver/index.js')
);
import packageJson from '../package.json' assert { type: 'json' };
import packageJson from '../package.json' with { type: 'json' };
const { engines } = packageJson;