chore: remove pnpm workspace configuration file
This commit is contained in:
parent
e66cea1d12
commit
637cc4a3d0
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@ -26,10 +26,8 @@ jobs:
|
||||
tools: composer:v2
|
||||
coverage: none
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
||||
with:
|
||||
node-version: '22'
|
||||
- name: Setup Bun
|
||||
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
|
||||
|
||||
- name: Setup Application
|
||||
run: composer setup
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@ -19,8 +19,7 @@
|
||||
.phpunit.result.cache
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
bun-debug.log
|
||||
/auth.json
|
||||
/.fleet
|
||||
/.idea
|
||||
|
||||
@ -52,7 +52,7 @@ ## Application Structure & Architecture
|
||||
|
||||
## 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
|
||||
|
||||
@ -175,7 +175,7 @@ ## Testing
|
||||
|
||||
## 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 ===
|
||||
|
||||
|
||||
2
bunfig.toml
Normal file
2
bunfig.toml
Normal file
@ -0,0 +1,2 @@
|
||||
[install]
|
||||
ignoreScripts = true
|
||||
@ -53,8 +53,8 @@
|
||||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
|
||||
"@php artisan key:generate",
|
||||
"@php artisan migrate --force",
|
||||
"npm install",
|
||||
"npm run build"
|
||||
"bun install",
|
||||
"bun run build"
|
||||
],
|
||||
"dev": [
|
||||
"Composer\\Config::disableProcessTimeout",
|
||||
@ -68,9 +68,9 @@
|
||||
],
|
||||
"ci:check": [
|
||||
"Composer\\Config::disableProcessTimeout",
|
||||
"npm run lint:check",
|
||||
"npm run format:check",
|
||||
"npm run types:check",
|
||||
"bun run lint:check",
|
||||
"bun run format:check",
|
||||
"bun run types:check",
|
||||
"@test"
|
||||
],
|
||||
"types:check": [
|
||||
|
||||
12718
package-lock.json
generated
12718
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
8492
pnpm-lock.yaml
generated
8492
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,5 +0,0 @@
|
||||
packages:
|
||||
- '.'
|
||||
|
||||
publicHoistPattern:
|
||||
- '@inertiajs/core'
|
||||
Loading…
Reference in New Issue
Block a user