We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c77d150 commit 189fe69Copy full SHA for 189fe69
2 files changed
package.json
@@ -38,6 +38,9 @@
38
"config": {
39
"sitesUrl": "https://raw.githubusercontent.com/buzz/imdb-link-em-all/master/sites.json"
40
},
41
+ "engines": {
42
+ "node": ">=22"
43
+ },
44
"devDependencies": {
45
"@babel/cli": "^7.26.4",
46
"@babel/core": "^7.26.0",
rollup.config.js
@@ -10,7 +10,7 @@ import resolve from '@rollup/plugin-node-resolve'
10
import precss from 'precss'
11
import { fileURLToPath } from 'url'
12
13
-import pkg from './package.json' assert { type: 'json' }
+import pkg from './package.json' with { type: 'json' }
14
15
const __dirname = path.dirname(fileURLToPath(import.meta.url))
16
const production = !process.env.ROLLUP_WATCH
0 commit comments