diff --git a/CHANGELOG.md b/CHANGELOG.md index 00fcfdd..9d2478d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +0.3.0 / 2017-11-16 +================== +- Upgrade Docker container to `node:8.9.1-alpine` +- Remove redundant `--` for forwarding script options + 0.2.0 / 2017-10-31 ================== - Upgrade Docker container to `node:8.8.1-alpine` diff --git a/Dockerfile b/Dockerfile index f56a968..e831d86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:8.8.1-alpine +FROM node:8.9.1-alpine ENV USERNAME nodeuser diff --git a/package.json b/package.json index cdf8b31..0f697ed 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "gp-data-etl", - "version": "0.2.0", + "version": "0.3.0", "description": "ETL to extract data from Syndication and store as JSON", "main": "app.js", "scripts": { "coverage-check": "istanbul check-coverage --config .istanbul.yml", - "coverage-generate": "yarn istanbul -- cover _mocha -- --recursive test/unit", + "coverage-generate": "yarn istanbul cover -- _mocha -- --recursive test/unit", "coverage-upload-coveralls": "cat ./coverage/lcov.info | coveralls", "git-hook": "yarn lint && yarn coverage-generate && yarn coverage-check", "istanbul": "NODE_ENV=test istanbul", @@ -21,8 +21,8 @@ "test-ci": "yarn git-hook && yarn coverage-upload-coveralls", "test-integration": "NODE_ENV=test mocha --recursive test/integration", "test-unit": "NODE_ENV=test mocha --recursive test/unit", - "test-watch": "yarn test-unit -- --watch --reporter min", - "test-watch-integration": "yarn test-integration -- --watch --reporter min" + "test-watch": "yarn test-unit --watch --reporter min", + "test-watch-integration": "yarn test-integration --watch --reporter min" }, "repository": { "type": "git",