From 31d301d2246dd1064c9a5348e079507ec0ff42bf Mon Sep 17 00:00:00 2001 From: Andrew Welch Date: Sat, 15 Jan 2022 14:05:45 -0500 Subject: [PATCH 1/3] fix: Remove `tsc` from the `build` script for the example app to so it can build successfully out of the box ([#2](https://github.com/nystudio107/vitejs-docker-dev/issues/2)) --- app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/package.json b/app/package.json index cca9bba..fac7a8d 100644 --- a/app/package.json +++ b/app/package.json @@ -5,7 +5,7 @@ "keywords": ["vite", "vitejs", "local", "development", "development-environment","docker", "docker-container"], "scripts": { "dev": "vite", - "build": "tsc && vite build", + "build": "vite build", "serve": "vite preview" }, "devDependencies": { From 190c439c72ead434ffd6c0e3ba3dccb10d947c5d Mon Sep 17 00:00:00 2001 From: Andrew Welch Date: Sat, 15 Jan 2022 14:06:09 -0500 Subject: [PATCH 2/3] feat: Add app/dist/ to `.gitignore` to ignore build artifacts --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 17bf61f..87e12e7 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,9 @@ npm-debug.log .pnpm-store pnpm-lock.yaml +# APP FILES +app/dist/ + # MISC FILES .cache .DS_Store From b0bc7afdffb0bd40c0482efc71802b792cc515ff Mon Sep 17 00:00:00 2001 From: Andrew Welch Date: Sat, 15 Jan 2022 14:06:18 -0500 Subject: [PATCH 3/3] chore: Version 1.0.4 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24efecb..bb1aef5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 1.0.4 - 2022.01.15 +### Fixed +* Remove `tsc` from the `build` script for the example app to so it can build successfully out of the box ([#2](https://github.com/nystudio107/vitejs-docker-dev/issues/2)) + ## 1.0.3 - 2021.12.27 ### Fixed * Include packages needed in the `Dockerfile` to build `bcrypt` from source for `arm64` (Apple Silicon M1) as [prebuilts don't exist](https://github.com/kelektiv/node.bcrypt.js/issues/868)