Skip to content

Commit

Permalink
ci: fix config for dependabot.yml & more robust sortJSON (#83)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
maehr and coderabbitai[bot] authored Dec 20, 2023
1 parent e543b70 commit 1b98dc4
Show file tree
Hide file tree
Showing 5 changed files with 300 additions and 239 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

version: 2
updates:
- package-ecosystem: 'pnpm' # See documentation for possible values
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: 'weekly'
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint": "prettier --check . '!{CODE_OF_CONDUCT.md,LICENSE.md}' && eslint .",
"format": "prettier --write .",
"prepare": "npm run prebuild && npm run format",
"prebuild": "node utils/sortJSON.js && node --experimental-json-modules utils/compileReadme.js",
"prebuild": "node utils/sortJSON.js && node utils/compileReadme.js",
"awesome-lint": "awesome-lint"
},
"engines": {
Expand All @@ -25,9 +25,9 @@
"packageManager": "pnpm@8.7.5",
"devDependencies": {
"@playwright/test": "^1.40.1",
"@sveltejs/adapter-cloudflare": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/adapter-cloudflare": "^3.0.1",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.0.4",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
Expand All @@ -46,10 +46,10 @@
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"svelte-multiselect": "^10.2.0",
"tailwindcss": "^3.3.6",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.0.4"
"vitest": "^1.1.0"
},
"type": "module"
}
Loading

0 comments on commit 1b98dc4

Please sign in to comment.