Skip to content

Commit 9172250

Browse files
committed
feat: bump min node version to 16
1 parent eb327cd commit 9172250

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"license": "MIT",
1616
"author": "Rahim Alwer <[email protected]>",
1717
"engines": {
18-
"node": ">= 14"
18+
"node": ">=16"
1919
},
2020
"homepage": "https://github.com/mihar-22/svelte-jester#readme",
2121
"repository": {
@@ -75,6 +75,6 @@
7575
"typescript": "^4.0.0"
7676
},
7777
"volta": {
78-
"node": "14.18.3"
78+
"node": "16.13.2"
7979
}
8080
}

rollup.config.cjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const resolve = require('@rollup/plugin-node-resolve').default
2-
const copy = require("rollup-plugin-copy-assets")
2+
const copy = require('rollup-plugin-copy-assets')
33
const pkg = require('./package.json')
44

55
const external = [].concat(
@@ -22,9 +22,9 @@ module.exports = [
2222
resolve(),
2323
copy({
2424
assets: [
25-
"src/preprocess.js"
26-
],
27-
}),
25+
'src/preprocess.js'
26+
]
27+
})
2828
]
2929
},
3030
{

0 commit comments

Comments
 (0)