Upgrade to Babel 7

Also, update to webpack 4 and add support for dynamic import() and
import.meta in ?module mode.

Fixes #108
Fixes #151
This commit is contained in:
Michael Jackson
2018-12-05 22:54:42 -05:00
parent fde375782c
commit 4fd697aec1
8 changed files with 4545 additions and 1454 deletions

View File

@ -2,8 +2,8 @@ FROM node:8
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn --pure-lockfile
COPY package.json package-lock.json ./
RUN npm ci
# COPY . .
ENV PORT 5000