From 8fc94ec0468bd31a931a0bb656bc20e5991df03c Mon Sep 17 00:00:00 2001 From: William Durand Date: Thu, 13 Jul 2017 13:46:42 +0200 Subject: [PATCH] Remove --harmony-async-await usage --- README.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3220436..da1b664 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Docker container: $ docker-compose run --rm app yarn run assignees yarn run v0.19.1 - $ node --harmony-async-await bin/assignees + $ node bin/assignees Usage: assignees [options] [command] diff --git a/package.json b/package.json index 8ddc3ef..bfaa9dc 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,9 @@ "private": true, "license": "MIT", "scripts": { - "start": "node --harmony-async-await app.js", + "start": "node app.js", "test": "NODE_ENV=test mocha --harmony --reporter spec --recursive", - "assignees": "node --harmony-async-await bin/assignees" + "assignees": "node bin/assignees" }, "dependencies": { "async": "^2.1.2",