Skip to content
This repository was archived by the owner on Apr 1, 2019. It is now read-only.

Commit a43ac0f

Browse files
committed
📦 Update container to node:8.9.1-alpine
Remove `--` from passing options to scripts as it has been depcreated in yarn 1+ and will change behaviour at some future point.
1 parent 991629e commit a43ac0f

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.3.0 / 2017-11-16
2+
==================
3+
- Upgrade Docker container to `node:8.9.1-alpine`
4+
- Remove redundant `--` for forwarding script options
5+
16
0.2.0 / 2017-10-31
27
==================
38
- Upgrade Docker container to `node:8.8.1-alpine`

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:8.8.1-alpine
1+
FROM node:8.9.1-alpine
22

33
ENV USERNAME nodeuser
44

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "gp-data-etl",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "ETL to extract data from Syndication and store as JSON",
55
"main": "app.js",
66
"scripts": {
77
"coverage-check": "istanbul check-coverage --config .istanbul.yml",
8-
"coverage-generate": "yarn istanbul -- cover _mocha -- --recursive test/unit",
8+
"coverage-generate": "yarn istanbul cover -- _mocha -- --recursive test/unit",
99
"coverage-upload-coveralls": "cat ./coverage/lcov.info | coveralls",
1010
"git-hook": "yarn lint && yarn coverage-generate && yarn coverage-check",
1111
"istanbul": "NODE_ENV=test istanbul",
@@ -21,8 +21,8 @@
2121
"test-ci": "yarn git-hook && yarn coverage-upload-coveralls",
2222
"test-integration": "NODE_ENV=test mocha --recursive test/integration",
2323
"test-unit": "NODE_ENV=test mocha --recursive test/unit",
24-
"test-watch": "yarn test-unit -- --watch --reporter min",
25-
"test-watch-integration": "yarn test-integration -- --watch --reporter min"
24+
"test-watch": "yarn test-unit --watch --reporter min",
25+
"test-watch-integration": "yarn test-integration --watch --reporter min"
2626
},
2727
"repository": {
2828
"type": "git",

0 commit comments

Comments
 (0)