From aa2dd2b55b0a2d8cdcf2c680ded0709d1e545952 Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Mon, 1 Feb 2016 20:23:34 +0900 Subject: [PATCH] Fix: trivial change. --- src/bin/version.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/version.js b/src/bin/version.js index 63dc4b4..edcbd45 100644 --- a/src/bin/version.js +++ b/src/bin/version.js @@ -4,9 +4,6 @@ * See LICENSE file in root directory for full license. */ -// In tests, `../../package.json` is correct. -const version = read("../package.json") || read("../../package.json"); - /** * Reads the version of `npm-run-all`. * @@ -22,6 +19,9 @@ function read(path) { } } +// In tests, `../../package.json` is correct. +const version = read("../package.json") || read("../../package.json"); + /** * Print a version text. *