Skip to content

Commit 9be7c14

Browse files
Merge commit 'ea7ab044557e2b7977092dbe7e15b9f432330d30'
* commit 'ea7ab044557e2b7977092dbe7e15b9f432330d30': ⚡️ Release 1.3.3 (parse-community#1100) 1.3.2 version bump + changelog (parse-community#1099) Update Dockerfile (parse-community#1098) Update file-loader to the latest version 🚀 (parse-community#1095) Update react-router-dom to the latest version 🚀 (parse-community#1094) Update react-router to the latest version 🚀 (parse-community#1093) Update webpack to the latest version 🚀 (parse-community#1092) Update express to the latest version 🚀 (parse-community#1090) Update puppeteer to the latest version 🚀 (parse-community#1089) Update webpack to the latest version 🚀 (parse-community#1088) Update Dockerfile (parse-community#1087) Update webpack to the latest version 🚀 (parse-community#1084)
2 parents 02dfc2d + ea7ab04 commit 9be7c14

File tree

6 files changed

+245
-376
lines changed

6 files changed

+245
-376
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ after_script:
2121
- greenkeeper-lockfile-upload
2222
deploy:
2323
provider: npm
24+
skip_cleanup: true
2425
on:
2526
tags: true
2627
all_branches: true

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
## Parse Dashboard Changelog
22

33
### master
4-
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/1.3.1...master)
4+
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/1.3.3...master)
55

66
* _Contributing to this repo? Add info about your change here to be included in next release_
77

8+
### 1.3.3
9+
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/1.3.2...1.3.3)
10+
11+
* FIX: Travis configuration which was preventing 1.3.2 from publishing, thanks to [Diamond Lewis](https://github.com/dplewis)
12+
13+
### 1.3.2
14+
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/1.3.1...1.3.2)
15+
16+
* FIX: Dockerhub configuration which was preventing 1.3.1 from publishing ([#1098](https://github.com/parse-community/parse-dashboard/pull/1098)), thanks to [Diamond Lewis](https://github.com/dplewis)
17+
818
### 1.3.1
919
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/1.3.0...1.3.1)
1020

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# --- Base Node Image ---
33
FROM node:8-alpine AS base
44

5+
RUN apk update; \
6+
apk add git;
7+
58
WORKDIR /src
69

710
# Copy package.json first to benefit from layer caching
@@ -15,7 +18,7 @@ RUN npm install
1518
COPY . /src
1619

1720
# Run all webpack build steps
18-
RUN npm run prepublish && npm run build
21+
RUN npm run prepare && npm run build
1922

2023

2124
#

Parse-Dashboard/public/favicon.ico

-14.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)