File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ ## 1.0.2 - 2021.12.20
6+ ### Fixed
7+ * Use ` ${CURDIR} ` instead of ` pwd ` to be cross-platform compatible with Windows WSL2
8+
59## 1.0.1 - 2021.12.19
610### Added
711* Added screenshots to the ` README.md `
Original file line number Diff line number Diff line change 1010 rm -rf .pnpm-store
1111 rm -rf ${APP_DIR} /node_modules
1212 rm -rf ${VITE_DIR}
13- rm ${APP_DIR} /pnpm-lock.yaml
13+ rm -f ${APP_DIR} /pnpm-lock.yaml
1414docker :
1515 docker build \
1616 docker-config/ \
@@ -21,7 +21,7 @@ docker:
2121 --name vitejs-build-dev \
2222 --rm \
2323 -t \
24- -v ` pwd ` :/app \
24+ -v " ${CURDIR} " :/app \
2525 -e VITE_REPO=${VITE_REPO} \
2626 -e VITE_DIR=${VITE_DIR} \
2727 -e APP_DIR=${APP_DIR} \
@@ -33,7 +33,7 @@ app-pnpm:
3333 --rm \
3434 -t \
3535 -p ${PORT} :${PORT} \
36- -v ` pwd ` :/app \
36+ -v " ${CURDIR} " :/app \
3737 nystudio107/vitejs-dev:${TAG} \
3838 -c " cd /app/${APP_DIR} && pnpm link /app/${VITE_DIR} /packages/vite && pnpm $( filter-out $@ ,$( MAKECMDGOALS) ) "
3939app-sh :
@@ -43,7 +43,7 @@ vite-pnpm:
4343 --name vitejs-vite-dev \
4444 --rm \
4545 -t \
46- -v ` pwd ` :/app \
46+ -v " ${CURDIR} " :/app \
4747 nystudio107/vitejs-dev:${TAG} \
4848 -c " cd /app/${VITE_DIR} /packages/vite && pnpm $( filter-out $@ ,$( MAKECMDGOALS) ) "
4949vite-sh :
You can’t perform that action at this time.
0 commit comments