From 3672eff31c9ebb507850f98bead5c56bff5697fc Mon Sep 17 00:00:00 2001 From: David Majda Date: Wed, 22 Jun 2016 09:08:43 +0200 Subject: [PATCH] bin/pegjs: Order peg.generate options alphabetically --- bin/pegjs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/pegjs b/bin/pegjs index 084aece..9aa4322 100755 --- a/bin/pegjs +++ b/bin/pegjs @@ -109,13 +109,13 @@ var outputFile = null; var options = { cache: false, - output: "source", - format: "umd", - exportVar: null, dependencies: {}, + exportVar: null, + format: "umd", optimize: "speed", - trace: false, - plugins: [] + output: "source", + plugins: [], + trace: false }; while (args.length > 0 && isOption(args[0])) {