chore: remove pnpm workspace configuration file

This commit is contained in:
Yoga Pangestu 2026-09-04 15:41:01 +07:00
parent e66cea1d12
commit 637cc4a3d0
10 changed files with 1854 additions and 21229 deletions

View File

@ -26,10 +26,8 @@ jobs:
tools: composer:v2 tools: composer:v2
coverage: none coverage: none
- name: Setup Node - name: Setup Bun
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
node-version: '22'
- name: Setup Application - name: Setup Application
run: composer setup run: composer setup

3
.gitignore vendored
View File

@ -19,8 +19,7 @@
.phpunit.result.cache .phpunit.result.cache
Homestead.json Homestead.json
Homestead.yaml Homestead.yaml
npm-debug.log bun-debug.log
yarn-error.log
/auth.json /auth.json
/.fleet /.fleet
/.idea /.idea

1
.npmrc
View File

@ -1 +0,0 @@
ignore-scripts=true

View File

@ -52,7 +52,7 @@ ## Application Structure & Architecture
## Frontend Bundling ## Frontend Bundling
- If the user doesn't see a frontend change reflected in the UI, it could mean they need to run `npm run build`, `npm run dev`, or `composer run dev`. Ask them. - If the user doesn't see a frontend change reflected in the UI, it could mean they need to run `bun run build`, `bun run dev`, or `composer run dev`. Ask them.
## Documentation Files ## Documentation Files
@ -175,7 +175,7 @@ ## Testing
## Vite Error ## Vite Error
- If you receive an "Illuminate\Foundation\ViteException: Unable to locate file in Vite manifest" error, you can run `npm run build` or ask the user to run `npm run dev` or `composer run dev`. - If you receive an "Illuminate\Foundation\ViteException: Unable to locate file in Vite manifest" error, you can run `bun run build` or ask the user to run `bun run dev` or `composer run dev`.
=== wayfinder/core rules === === wayfinder/core rules ===

1842
bun.lock Normal file

File diff suppressed because it is too large Load Diff

2
bunfig.toml Normal file
View File

@ -0,0 +1,2 @@
[install]
ignoreScripts = true

View File

@ -53,8 +53,8 @@
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"", "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan key:generate", "@php artisan key:generate",
"@php artisan migrate --force", "@php artisan migrate --force",
"npm install", "bun install",
"npm run build" "bun run build"
], ],
"dev": [ "dev": [
"Composer\\Config::disableProcessTimeout", "Composer\\Config::disableProcessTimeout",
@ -68,9 +68,9 @@
], ],
"ci:check": [ "ci:check": [
"Composer\\Config::disableProcessTimeout", "Composer\\Config::disableProcessTimeout",
"npm run lint:check", "bun run lint:check",
"npm run format:check", "bun run format:check",
"npm run types:check", "bun run types:check",
"@test" "@test"
], ],
"types:check": [ "types:check": [

12718
package-lock.json generated

File diff suppressed because it is too large Load Diff

8492
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +0,0 @@
packages:
- '.'
publicHoistPattern:
- '@inertiajs/core'