From 6d1c3e1aec62021c475c51f21fd553b83147218c Mon Sep 17 00:00:00 2001 From: Kenneth Powers Date: Thu, 1 Jan 2015 01:04:54 -0500 Subject: Use yargs instead of optimist. --- bin/uglifyjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/uglifyjs b/bin/uglifyjs index fc33f96f..bade20cc 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -5,12 +5,12 @@ var UglifyJS = require("../tools/node"); var sys = require("util"); -var optimist = require("optimist"); +var yargs = require("yargs"); var fs = require("fs"); var path = require("path"); var async = require("async"); var acorn; -var ARGS = optimist +var ARGS = yargs .usage("$0 input1.js [input2.js ...] [options]\n\ Use a single dash to read input from the standard input.\ \n\n\ @@ -129,7 +129,7 @@ if (ARGS.ast_help) { } if (ARGS.h || ARGS.help) { - sys.puts(optimist.help()); + sys.puts(yargs.help()); process.exit(0); } -- cgit v1.2.3 nput type='submit' value='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/version-control.scm
AgeCommit message (Expand)Author
2022-04-29tests: Avoid starting services to check whether they're running....Ludovic Courtès
2021-10-06tests: gitile: Increase VM memory size....Mathieu Othacehe
2021-09-26tests: Reduce boilerplate for users of 'system-test-runner'....Ludovic Courtès
2021-09-25tests: Adjust to SRFI-64 as found in Guile 3.0.7....Ludovic Courtès
2021-09-02gnu: version-control: Add gitile service....Julien Lepiller