Skip to content

Commit aa2dd2b

Browse files
committed
Fix: trivial change.
1 parent 45f74e8 commit aa2dd2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/version.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
* See LICENSE file in root directory for full license.
55
*/
66

7-
// In tests, `../../package.json` is correct.
8-
const version = read("../package.json") || read("../../package.json");
9-
107
/**
118
* Reads the version of `npm-run-all`.
129
*
@@ -22,6 +19,9 @@ function read(path) {
2219
}
2320
}
2421

22+
// In tests, `../../package.json` is correct.
23+
const version = read("../package.json") || read("../../package.json");
24+
2525
/**
2626
* Print a version text.
2727
*

0 commit comments

Comments
 (0)