Skip to content

Commit 082113a

Browse files
authored
Merge pull request #87 from codfish/deps
feat: bump deps, json-server to 0.16.3
2 parents 8819f38 + bff33d8 commit 082113a

File tree

4 files changed

+19795
-4017
lines changed

4 files changed

+19795
-4017
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM node:12
1+
FROM node:14.15-slim
22

33
RUN mkdir /app
44
WORKDIR /app
55

6-
ENV JSON_SERVER_VERSION=0.16.1
6+
ENV JSON_SERVER_VERSION=0.16.3
77

88
RUN npm install -g json-server@${JSON_SERVER_VERSION}
99
COPY package.json package-lock.json ./

README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ automatically, just refresh the page.
148148

149149
```sh
150150
git tag -f -m 'v0.17.0' v0.17.0
151-
git push origin master --tags
151+
git push origin v0.17.0
152152
```
153153

154154
**Updating old version**
@@ -157,10 +157,7 @@ We keep our versions in sync with `json-server`. This scenario would happen if t
157157
feature change with our implementation but the `json-server` version doesn't change.
158158

159159
```sh
160-
git tag -d v0.16.1
161-
git push origin :v0.16.1
162-
git tag -f -m 'v0.16.1' v0.16.1
163-
git push origin master --tags
160+
git tag -fa v0.16.1 -m "Update v0.16.1 tag" && git push origin v0.16.1 --force
164161
```
165162

166163
Docker Hub is configured to automatically build on new tags pushed to GitHub.

0 commit comments

Comments
 (0)