Skip to content

Commit

Permalink
feat: bump min node version to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
mihar-22 committed Feb 1, 2022
1 parent eb327cd commit 9172250
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"license": "MIT",
"author": "Rahim Alwer <rahim_alwer@hotmail.com>",
"engines": {
"node": ">= 14"
"node": ">=16"
},
"homepage": "https://github.com/mihar-22/svelte-jester#readme",
"repository": {
Expand Down Expand Up @@ -75,6 +75,6 @@
"typescript": "^4.0.0"
},
"volta": {
"node": "14.18.3"
"node": "16.13.2"
}
}
8 changes: 4 additions & 4 deletions rollup.config.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const resolve = require('@rollup/plugin-node-resolve').default
const copy = require("rollup-plugin-copy-assets")
const copy = require('rollup-plugin-copy-assets')
const pkg = require('./package.json')

const external = [].concat(
Expand All @@ -22,9 +22,9 @@ module.exports = [
resolve(),
copy({
assets: [
"src/preprocess.js"
],
}),
'src/preprocess.js'
]
})
]
},
{
Expand Down

0 comments on commit 9172250

Please sign in to comment.