Skip to content

dependencies updates #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
"lint": "eslint index.js"
},
"dependencies": {
"@sveltejs/adapter-static": "^1.0.0-next.24",
"chalk": "^5.0.0"
"@sveltejs/adapter-static": "^2.0.2",
"chalk": "^5.2.0"
Comment on lines +23 to +24
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer to keep compatibility with older version, as it's still possible for now.

Suggested change
"@sveltejs/adapter-static": "^2.0.2",
"chalk": "^5.2.0"
"@sveltejs/adapter-static": "^1 || ^2",
"chalk": "^5.0.0"
  • ^1 || ^2 will allow all versions 1 and 2 of @sveltejs/adapter-static
  • ^5.0.0 include version 5.2.0 without limiting the minimum version

(see: https://semver.npmjs.com/)

},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1"
"eslint": "^8.43.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0.0-next.208"
"@sveltejs/kit": "^1.20.4"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe the minimum version can be lowered: here only version 1.20.4 and later are possible, but the code is still compatible with older version of SvelteKit

},
"repository": {
"type": "git",
Expand Down