Skip to content

Commit 00480f2

Browse files
author
Andrew Welch
committed
Merge branch 'release/1.0.4'
2 parents 950d2de + b0bc7af commit 00480f2

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ npm-debug.log
88
.pnpm-store
99
pnpm-lock.yaml
1010

11+
# APP FILES
12+
app/dist/
13+
1114
# MISC FILES
1215
.cache
1316
.DS_Store

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 1.0.4 - 2022.01.15
6+
### Fixed
7+
* 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))
8+
59
## 1.0.3 - 2021.12.27
610
### Fixed
711
* 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)

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"keywords": ["vite", "vitejs", "local", "development", "development-environment","docker", "docker-container"],
66
"scripts": {
77
"dev": "vite",
8-
"build": "tsc && vite build",
8+
"build": "vite build",
99
"serve": "vite preview"
1010
},
1111
"devDependencies": {

0 commit comments

Comments
 (0)