Compare commits
48
Commits
eb80d4a0fd
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d3ae61b0c5 | ||
|
|
eb7b8a12fd | ||
|
|
fab67538e1 | ||
|
|
0de569cff4 | ||
|
|
8cc71693f6 | ||
|
|
ac5ca405dd | ||
|
|
a004294241 | ||
|
|
bc72796467 | ||
|
|
90267abb92 | ||
|
|
e4958575bc | ||
|
|
7f035e958b | ||
|
|
9304198987 | ||
|
|
7e44d677ac | ||
|
|
ece3895b22 | ||
|
|
b101ecb9c2 | ||
|
|
d5cd4ece01 | ||
|
|
e62a937dc7 | ||
|
|
d6d8c8e8db | ||
|
|
e5fb73f61e | ||
|
|
665de9e0fc | ||
|
|
4a6b498879 | ||
|
|
7db6cc32b6 | ||
|
|
e9900ef20c | ||
|
|
ed9fa16b57 | ||
|
|
1640230c66 | ||
|
|
29ad253a61 | ||
|
|
5c37f3f611 | ||
|
|
fbaead91a9 | ||
|
|
c891439857 | ||
|
|
f77493a04b | ||
|
|
137eecdc1d | ||
|
|
bfbfc175ca | ||
|
|
0fd992bb21 | ||
|
|
c5412fa89b | ||
|
|
b30e6936b1 | ||
|
|
293863b5b0 | ||
|
|
9ea002a7a1 | ||
|
|
e67db071bb | ||
|
|
948bbf3de5 | ||
|
|
d6ef68f450 | ||
|
|
c0875de75b | ||
|
|
17a785c9d2 | ||
|
|
915d848294 | ||
|
|
a5bf846e52 | ||
|
|
15c82ea3b7 | ||
|
|
f8b98d9b30 | ||
|
|
68a4f1e36e | ||
|
|
78d730fad9 |
@@ -0,0 +1,24 @@
|
|||||||
|
name: dependabot-auto-merge
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- master
|
||||||
|
|
||||||
|
# Auto-merge Dependabot PRs with passing CI
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
dependabot:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# Only for Dependabot PRs
|
||||||
|
if: github.actor == 'dependabot[bot]'
|
||||||
|
steps:
|
||||||
|
- name: Auto-merge
|
||||||
|
run: gh pr merge --auto --merge "$PR_NUMBER"
|
||||||
|
env:
|
||||||
|
PR_NUMBER: ${{ github.event.number }}
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
+11
-58
@@ -1,78 +1,31 @@
|
|||||||
# Dependabot auto-updates — asepharyana-hub-hub
|
|
||||||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
||||||
|
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
# ── npm dependencies (Next.js, shadcn, Tailwind, etc.) ──
|
|
||||||
- package-ecosystem: "npm"
|
- package-ecosystem: "npm"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
time: "07:00"
|
day: "monday"
|
||||||
timezone: "Asia/Jakarta"
|
time: "05:00"
|
||||||
|
timezone: "Asia/Makassar"
|
||||||
open-pull-requests-limit: 10
|
open-pull-requests-limit: 10
|
||||||
assignees:
|
assignees:
|
||||||
- "asepharyana"
|
- "asepharyana"
|
||||||
labels:
|
|
||||||
- "dependencies"
|
|
||||||
- "npm"
|
|
||||||
commit-message:
|
commit-message:
|
||||||
prefix: "chore"
|
prefix: "chore"
|
||||||
prefix-development: "chore"
|
prefix-development: "chore"
|
||||||
include: "scope"
|
include: "scope"
|
||||||
versioning-strategy: "increase"
|
reviewers:
|
||||||
|
- "asepharyana"
|
||||||
|
labels:
|
||||||
|
- "dependencies"
|
||||||
groups:
|
groups:
|
||||||
react:
|
production:
|
||||||
patterns:
|
dependency-type: "production"
|
||||||
- "react"
|
|
||||||
- "react-dom"
|
|
||||||
- "@types/react*"
|
|
||||||
update-types:
|
update-types:
|
||||||
- "minor"
|
- "minor"
|
||||||
- "patch"
|
- "patch"
|
||||||
nextjs:
|
development:
|
||||||
patterns:
|
dependency-type: "development"
|
||||||
- "next*"
|
|
||||||
- "@next/*"
|
|
||||||
update-types:
|
update-types:
|
||||||
- "minor"
|
- "minor"
|
||||||
- "patch"
|
- "patch"
|
||||||
tailwind:
|
|
||||||
patterns:
|
|
||||||
- "tailwindcss*"
|
|
||||||
- "@tailwindcss/*"
|
|
||||||
update-types:
|
|
||||||
- "minor"
|
|
||||||
- "patch"
|
|
||||||
shadcn:
|
|
||||||
patterns:
|
|
||||||
- "shadcn*"
|
|
||||||
- "@shadcn/*"
|
|
||||||
update-types:
|
|
||||||
- "minor"
|
|
||||||
- "patch"
|
|
||||||
typescript-eslint:
|
|
||||||
patterns:
|
|
||||||
- "@typescript-eslint/*"
|
|
||||||
- "@types/node*"
|
|
||||||
update-types:
|
|
||||||
- "minor"
|
|
||||||
- "patch"
|
|
||||||
biome:
|
|
||||||
patterns:
|
|
||||||
- "@biomejs/*"
|
|
||||||
update-types:
|
|
||||||
- "minor"
|
|
||||||
- "patch"
|
|
||||||
framer-motion:
|
|
||||||
patterns:
|
|
||||||
- "framer-motion*"
|
|
||||||
update-types:
|
|
||||||
- "minor"
|
|
||||||
- "patch"
|
|
||||||
ignore:
|
|
||||||
- dependency-name: "typescript"
|
|
||||||
update-types:
|
|
||||||
- "version-update:semver-major"
|
|
||||||
- "version-update:semver-minor"
|
|
||||||
- "version-update:semver-patch"
|
|
||||||
+11
-11
@@ -10,37 +10,37 @@
|
|||||||
"format": "biome format --write"
|
"format": "biome format --write"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@base-ui/react": "^1.6.0",
|
"@base-ui/react": "^1.7.0",
|
||||||
"@shadcn/react": "^0.2.1",
|
"@shadcn/react": "^0.3.0",
|
||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"cmdk": "^1.1.1",
|
"cmdk": "^1.1.1",
|
||||||
"date-fns": "^4.4.0",
|
"date-fns": "^4.4.0",
|
||||||
"embla-carousel-react": "^8.6.0",
|
"embla-carousel-react": "^8.6.0",
|
||||||
"framer-motion": "^12.43.0",
|
"framer-motion": "^13.1.1",
|
||||||
"input-otp": "^1.4.2",
|
"input-otp": "^1.5.0",
|
||||||
"lucide-react": "^1.28.0",
|
"lucide-react": "^1.33.0",
|
||||||
"next": "16.3.0",
|
"next": "16.3.2",
|
||||||
"next-themes": "^0.4.6",
|
"next-themes": "^0.4.6",
|
||||||
"react": "19.2.8",
|
"react": "19.2.8",
|
||||||
"react-day-picker": "^10.0.1",
|
"react-day-picker": "^10.0.1",
|
||||||
"react-dom": "19.2.8",
|
"react-dom": "19.2.8",
|
||||||
"react-resizable-panels": "^4.12.2",
|
"react-resizable-panels": "^4.12.3",
|
||||||
"recharts": "3.10.1",
|
"recharts": "3.10.1",
|
||||||
"shadcn": "^4.16.1",
|
"shadcn": "^4.19.0",
|
||||||
"sonner": "^2.0.7",
|
"sonner": "^2.0.8",
|
||||||
"tailwind-merge": "^3.6.0",
|
"tailwind-merge": "^3.6.0",
|
||||||
"tw-animate-css": "^1.4.0"
|
"tw-animate-css": "^1.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "2.5.6",
|
"@biomejs/biome": "2.5.10",
|
||||||
"@tailwindcss/postcss": "^4",
|
"@tailwindcss/postcss": "^4",
|
||||||
"@types/node": "^26",
|
"@types/node": "^26",
|
||||||
"@types/react": "^19",
|
"@types/react": "^19",
|
||||||
"@types/react-dom": "^19",
|
"@types/react-dom": "^19",
|
||||||
"babel-plugin-react-compiler": "1.0.0",
|
"babel-plugin-react-compiler": "1.0.0",
|
||||||
"tailwindcss": "^4",
|
"tailwindcss": "^4",
|
||||||
"typescript": "5.9.3"
|
"typescript": "7.0.2"
|
||||||
},
|
},
|
||||||
"ignoreScripts": [
|
"ignoreScripts": [
|
||||||
"sharp",
|
"sharp",
|
||||||
|
|||||||
Reference in New Issue
Block a user