Skip to content

Commit

Permalink
v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ozziexsh committed Aug 3, 2022
1 parent 546847f commit 99a80aa
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,31 @@ function Component() {
);
}
```

## Building Locally

I had issues with using `npm link` so I have opted for these steps instead.

First install dependencies and run the build script

```shell
npm install
npm build
```

Then create a fresh laravel install with jetstream

```shell
composer create-project laravel/laravel myapp
cd myapp
composer require laravel/jetstream
php artisan jetstream:install inertia
```

Finally run the locally built version of laravel-jetstream-react

```shell
# from inside the "myapp" directory
# find wherever you cloned the laravel-jetstream-react repo
../laravel-jetstream-react/bin/run install
```
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "laravel-jetstream-react",
"version": "0.3.4",
"version": "0.3.5",
"description": "Replace Vue with React in a fresh Laravel Jetstream application",
"author": "Ozzie Neher @ozziexsh",
"bin": {
Expand Down

0 comments on commit 99a80aa

Please sign in to comment.