Skip to content

Commit e24e689

Browse files
committed
update the markdown doc and install bash scripts
1 parent bf0cab3 commit e24e689

File tree

7 files changed

+33
-29
lines changed

7 files changed

+33
-29
lines changed

README.md

+14-6
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414

1515

16-
17-
1816
# Symfony Vite Development Repository
1917

2018
In this repository you can contribute to `pentatrion/vite-bundle` and `vite-plugin-symfony`. You can find playgrounds for development.
@@ -26,16 +24,26 @@ In this repository you can contribute to `pentatrion/vite-bundle` and `vite-plug
2624
git clone https://github.com/lhapaipai/symfony-vite-dev.git
2725
cd symfony-vite-dev
2826

29-
30-
## Install vite-bundle/vite-plugin-symfony dependencies
27+
# Install vite-bundle/vite-plugin-symfony dependencies
3128
make install
3229

30+
# if you want to test the features in a playground
31+
# - "basic" is the principal playground
32+
# - "stimulus-basic" is for the core feature of stimulus
33+
# - "stimulus" is for Symfony UX
34+
# - other playgrounds are for specific use cases
3335

34-
## Install playgrounds (npm i/composer i for each of them)
36+
cd playground/<your-playground>
37+
symfony composer install
38+
39+
40+
# if you want to install all the playgrounds in one time (for each of them)
41+
# - composer install
42+
# - pnpm run build
3543
make install-playgrounds
3644
```
3745

38-
Note: If you want to install without makefile, first install composer dependencies of `.` and `./playground/stimulus` projects because the `./vendor` and `./playground/stimulus/vendor` directories contain npm dependencies needed for `pnpm install` which is recursive.
46+
3947

4048
## Execution
4149

bin/install-playgrounds.sh

+6-11
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ PLAYGROUNDS_DIR="$PROJECT_DIR/playground"
99
for PLAYGROUND_DIR in $PLAYGROUNDS_DIR/*
1010
do
1111
PLAYGROUND="$(basename $PLAYGROUND_DIR)"
12+
13+
if [ $PLAYGROUND == "docker" ]
14+
then
15+
continue
16+
fi
17+
1218
echo "* installing playground $PLAYGROUND"
1319
cd "$PLAYGROUND_DIR"
1420

@@ -19,18 +25,7 @@ do
1925
&& echo ' [ok]' || echo ' [failed]'
2026
fi
2127

22-
echo ' > pnpm i'
23-
pnpm i 1> /dev/null \
24-
&& echo ' [ok]' || echo ' [failed]'
25-
2628
echo ' > pnpm run build'
2729
pnpm run build 1> /dev/null \
2830
&& echo ' [ok]' || echo ' [failed]'
29-
30-
if [ $PLAYGROUND != "vite-only" ]
31-
then
32-
echo ' > symfony composer install'
33-
symfony composer install 1> /dev/null 2>&1 \
34-
&& echo ' [ok]' || echo ' [failed]'
35-
fi
3631
done

bin/install.sh

-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ cd "$PROJECT_DIR/src/vite-bundle"
1313
symfony composer install
1414

1515
cd "$PROJECT_DIR/src/vite-plugin-symfony"
16-
pnpm install
1716
pnpm run build

playground/legacy/composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"symfony/framework-bundle": "6.*",
1616
"symfony/runtime": "6.*",
1717
"symfony/twig-bundle": "6.*",
18+
"symfony/web-link": "6.*",
1819
"symfony/yaml": "6.*",
1920
"twig/extra-bundle": "^2.12|^3.0",
2021
"twig/twig": "^2.12|^3.0"

playground/legacy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
"volta": {
1414
"node": "20.9.0"
1515
}
16-
}
16+
}

src/vite-bundle/README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313

1414
# ViteBundle : Symfony integration with Vite
1515

16-
This bundle helps you render all the dynamic `script` and `link` tags needed.
17-
Essentially, it provides two twig functions to load the correct scripts into your templates.
16+
> [!IMPORTANT]
17+
> This repository is a "subtree split": a read-only subset of that main repository [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) which delivers to packagist only the necessary code.
1818
19-
⚠️ This repository is a "subtree split": a read-only subset of that main repository [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) which delivers to packagist only the necessary code.
19+
> [!IMPORTANT]
20+
> If you want to open issues, contribute, make PRs or consult examples you will have to go to the [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) repository.
2021
21-
If you want to open issues, contribute, make PRs or consult examples you will have to go to the [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) repository.
2222

23+
This bundle helps you render all the dynamic `script` and `link` tags needed.
24+
Essentially, it provides two twig functions to load the correct scripts into your templates.
2325

2426
## Installation
2527

@@ -57,7 +59,6 @@ Add these twig functions in any template or base layout where you need to includ
5759

5860
| Package | Description |
5961
| ----------------------------------------------------------------------- | :------------------------ |
60-
| [vite-bundle](https://github.com/lhapaipai/vite-bundle) | Symfony Bundle (read-only)|
6162
| [vite-plugin-symfony](https://github.com/lhapaipai/vite-plugin-symfony) | Vite plugin (read-only) |
6263
| [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) | Package for contributors |
6364

src/vite-plugin-symfony/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@
99
</div>
1010

1111

12+
# Vite plugin Symfony
1213

14+
> [!IMPORTANT]
15+
> This repository is a "subtree split": a read-only subset of that main repository [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) which delivers to packagist only the necessary code.
1316
14-
# Vite plugin Symfony
17+
> [!IMPORTANT]
18+
> If you want to open issues, contribute, make PRs or consult examples you will have to go to the [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) repository.
1519
1620
A Vite plugin to easily integrate Vite into your Symfony application.
1721

@@ -20,9 +24,6 @@ A Vite plugin to easily integrate Vite into your Symfony application.
2024

2125
This package is intended for use with the Symfony Bundle : [pentatrion/vite-bundle](https://github.com/lhapaipai/vite-bundle).
2226

23-
⚠️ This repository is a "subtree split": a read-only subset of that main repository [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) which delivers to packagist only the necessary code.
24-
25-
If you want to open issues, contribute, make PRs or consult examples you will have to go to the [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) repository.
2627

2728
## Installation
2829

@@ -85,7 +86,6 @@ and your package.json :
8586
| Package | Description |
8687
| ----------------------------------------------------------------------- | :------------------------ |
8788
| [vite-bundle](https://github.com/lhapaipai/vite-bundle) | Symfony Bundle (read-only)|
88-
| [vite-plugin-symfony](https://github.com/lhapaipai/vite-plugin-symfony) | Vite plugin (read-only) |
8989
| [symfony-vite-dev](https://github.com/lhapaipai/symfony-vite-dev) | Package for contributors |
9090

9191
## License

0 commit comments

Comments
 (0)