Skip to content

Commit

Permalink
⬆️ Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Oct 6, 2023
1 parent b27be2c commit 2f550e5
Show file tree
Hide file tree
Showing 6 changed files with 630 additions and 753 deletions.
2 changes: 0 additions & 2 deletions app/res/assets/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { type Alpine } from "alpinejs";
import type Axios from "axios";

export {};

declare;
global;
{
Expand Down
8 changes: 4 additions & 4 deletions rome.json → biome.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "./node_modules/rome/configuration_schema.json",
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": {
"enabled": true,
"ignore": ["node_modules", "vendor", "public/static"]
"ignore": ["node_modules", "vendor", "storage", "public/static"]
},
"linter": {
"enabled": true,
Expand All @@ -14,14 +14,14 @@
"noShoutyConstants": "warn"
}
},
"ignore": ["node_modules", "vendor", "public/static"]
"ignore": ["node_modules", "vendor", "storage", "public/static"]
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentSize": 4,
"lineWidth": 80,
"ignore": ["node_modules", "vendor", "public/static"]
"ignore": ["node_modules", "vendor", "storage", "public/static"]
}
}
60 changes: 30 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"private": true,
"type": "module",
"engines": {
"node": ">=18.16",
"pnpm": ">=8.0.0",
"node": ">=18.18.0",
"pnpm": ">=8.8.0",
"npm": "prefer using pnpm",
"yarn": "prefer using pnpm"
},
"packageManager": "pnpm@8.6.6",
"packageManager": "pnpm@8.8.0",
"publishConfig": {
"access": "public"
},
Expand All @@ -19,52 +19,52 @@
},
"scripts": {
"build": "vite build",
"check": "rome ci .",
"check.format": "rome format .",
"check.lint": "rome check .",
"check": "biome ci .",
"check.format": "biome format .",
"check.lint": "biome check .",
"debug": "pnpm check && pnpm test && pnpm e2e",
"dev": "concurrently \"vite\" \"vitest\"",
"e2e": "playwright test",
"e2e.install": "playwright install --with-deps",
"e2e.report": "playwright show-report",
"e2e.ui": "playwright test --ui",
"fix": "pnpm lint && pnpm format",
"format": "rome format --write .",
"format": "biome format --write .",
"inspect": "node --inspect-brk ./node_modules/vite/bin/vite.js --force",
"lint": "rome check --apply-unsafe .",
"lint": "biome check --apply-unsafe .",
"test": "vitest run",
"test.ui": "vitest --ui",
"test.cov": "vitest run --coverage",
"start": "vite"
},
"devDependencies": {
"@alpinejs/focus": "^3.12.3",
"@playwright/test": "^1.36.0",
"@tailwindcss/forms": "^0.5.4",
"@alpinejs/focus": "^3.13.1",
"@biomejs/biome": "1.2.2",
"@playwright/test": "^1.38.1",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@tailwindcss/typography": "^0.5.9",
"@types/alpinejs": "^3.7.2",
"@types/alpinejs__focus": "^3.10.0",
"@types/node": "^20.4.2",
"@types/node-fetch": "^2.6.4",
"@vitest/coverage-c8": "^0.33.0",
"alpinejs": "^3.12.3",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"concurrently": "^8.2.0",
"@tailwindcss/typography": "^0.5.10",
"@types/alpinejs": "^3.13.2",
"@types/alpinejs__focus": "^3.13.1",
"@types/node": "^20.8.2",
"@types/node-fetch": "^2.6.6",
"@vitest/coverage-v8": "^0.34.6",
"alpinejs": "^3.13.1",
"autoprefixer": "^10.4.16",
"axios": "^1.5.1",
"concurrently": "^8.2.1",
"cssnano": "^6.0.1",
"laravel-vite-plugin": "^0.7.8",
"node-fetch": "3.3.1",
"postcss": "^8.4.26",
"laravel-vite-plugin": "^0.8.1",
"node-fetch": "3.3.2",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.1",
"rome": "^12.1.3",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vite-tsconfig-paths": "4.2.0",
"vitest": "^0.33.0"
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-tsconfig-paths": "4.2.1",
"vitest": "^0.34.6"
}
}
Loading

0 comments on commit 2f550e5

Please sign in to comment.