You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For now artisan command should run only after build step, or run in watch mode (pnpm dev). So tstep by step to run artisan command for now is:
runpnpm build or pnpm dev, wait until source code is compiled
run pnpm artisan [command]
It will be nice if we can run artisan command without compiling the source code, for example using ts-node. But I was tried using it and is complicated for esm type project.
I see this magic tool for alternative https://github.com/esbuild-kit/tsx
I think we can use it in development.
The text was updated successfully, but these errors were encountered:
For now artisan command should run only after build step, or run in watch mode (
pnpm dev
). So tstep by step to run artisan command for now is:pnpm build
orpnpm dev
, wait until source code is compiledpnpm artisan [command]
It will be nice if we can run artisan command without compiling the source code, for example using
ts-node
. But I was tried using it and is complicated for esm type project.I see this magic tool for alternative
https://github.com/esbuild-kit/tsx
I think we can use it in development.
The text was updated successfully, but these errors were encountered: