Skip to content

Commit

Permalink
fix: bump kit versions, update deps & fix xojs issues (#178)
Browse files Browse the repository at this point in the history
* chore: update sys deps

* chore: update nodejs deps

* fix: correct xojs issues

* chore: config to install peers automatically

* fix: undo xojs import .js suffix

* fix: ignore xojs file ext requirement

* docs: update version compat table
  • Loading branch information
jthegedus authored Aug 13, 2022
1 parent 11d90cb commit dde0a0e
Show file tree
Hide file tree
Showing 8 changed files with 2,088 additions and 1,071 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auto-install-peers=true
6 changes: 3 additions & 3 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
firebase 10.9.2
nodejs 16.14.2
pnpm 6.13.0
firebase 11.6.0
nodejs 16.16.0
pnpm 7.9.1

# use for Firebase Emulator

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ the Adapter and SvelteKit becoming incompatible. Here is a compatibility table:

| Adapter Version | SvelteKit Version |
| --------------- | -------------------- |
| `0.14.2` | `1.0.0-next.405` |
| `0.14.0` | `1.0.0-next.330` |
| `0.13.1` | `1.0.0-next.180` |
| `0.13.0` | `1.0.0-next.168` |
Expand Down
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@
"node": "^14.13.1 || >= 16"
},
"dependencies": {
"esbuild": "^0.14.39"
"esbuild": "^0.15.2"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0.0-next.343"
"@sveltejs/kit": "^1.0.0-next.405"
},
"devDependencies": {
"@sveltejs/kit": "^1.0.0-next.343",
"@sveltejs/kit": "^1.0.0-next.405",
"@types/express": "^4.17.13",
"@types/node": "^17.0.33",
"ava": "^3.15.0",
"firebase-functions": "^3.21.1",
"xo": "^0.48.0"
"@types/node": "^18.7.3",
"ava": "^4.3.1",
"firebase-functions": "^3.22.0",
"xo": "^0.51.0"
},
"scripts": {
"fix": "xo --fix",
Expand All @@ -66,7 +66,8 @@
"tests/integration"
],
"rules": {
"unicorn/prefer-node-protocol": "off"
"unicorn/prefer-node-protocol": "off",
"n/file-extension-in-import": "off"
}
}
}
Loading

0 comments on commit dde0a0e

Please sign in to comment.