Skip to content

Commit 1b98dc4

Browse files
ci: fix config for dependabot.yml & more robust sortJSON (#83)
* ci: fix config for dependabot.yml * fix: make readme generation more robust * chore: dependencies updated * fix: use Object.assign() Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * fix: catch stringify errors * fix: refactoring of experimental features * fix: functional refactoring Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * fix: typo --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent e543b70 commit 1b98dc4

File tree

5 files changed

+300
-239
lines changed

5 files changed

+300
-239
lines changed

.github/dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: 'pnpm' # See documentation for possible values
8+
- package-ecosystem: 'npm' # See documentation for possible values
99
directory: '/' # Location of package manifests
1010
schedule:
1111
interval: 'weekly'

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"lint": "prettier --check . '!{CODE_OF_CONDUCT.md,LICENSE.md}' && eslint .",
1515
"format": "prettier --write .",
1616
"prepare": "npm run prebuild && npm run format",
17-
"prebuild": "node utils/sortJSON.js && node --experimental-json-modules utils/compileReadme.js",
17+
"prebuild": "node utils/sortJSON.js && node utils/compileReadme.js",
1818
"awesome-lint": "awesome-lint"
1919
},
2020
"engines": {
@@ -25,9 +25,9 @@
2525
"packageManager": "[email protected]",
2626
"devDependencies": {
2727
"@playwright/test": "^1.40.1",
28-
"@sveltejs/adapter-cloudflare": "^3.0.0",
29-
"@sveltejs/adapter-static": "^3.0.0",
30-
"@sveltejs/kit": "^2.0.0",
28+
"@sveltejs/adapter-cloudflare": "^3.0.1",
29+
"@sveltejs/adapter-static": "^3.0.1",
30+
"@sveltejs/kit": "^2.0.4",
3131
"@sveltejs/vite-plugin-svelte": "^3.0.1",
3232
"@tailwindcss/typography": "^0.5.10",
3333
"autoprefixer": "^10.4.16",
@@ -46,10 +46,10 @@
4646
"svelte": "^4.2.8",
4747
"svelte-check": "^3.6.2",
4848
"svelte-multiselect": "^10.2.0",
49-
"tailwindcss": "^3.3.6",
49+
"tailwindcss": "^3.4.0",
5050
"typescript": "^5.3.3",
5151
"vite": "^5.0.10",
52-
"vitest": "^1.0.4"
52+
"vitest": "^1.1.0"
5353
},
5454
"type": "module"
5555
}

0 commit comments

Comments
 (0)