Skip to content

Commit

Permalink
Drop exit dependencie
Browse files Browse the repository at this point in the history
According to nodejs/node-v0.x-archive#3584
this was fixed with nodejs/node-v0.x-archive@20176a9 in 2014.
  • Loading branch information
lauriro committed Nov 6, 2021
1 parent 057b1c6 commit 12baf7a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -42,7 +42,6 @@
"dependencies": {
"cli": "~1.0.0",
"console-browserify": "1.1.x",
"exit": "0.1.x",
"htmlparser2": "3.8.x",
"lodash": "~4.17.21",
"minimatch": "~3.0.2",
Expand Down
3 changes: 1 addition & 2 deletions src/cli.js
Expand Up @@ -7,7 +7,6 @@ var path = require("path");
var shjs = require("shelljs");
var minimatch = require("minimatch");
var htmlparser = require("htmlparser2");
var exit = require("exit");
var stripJsonComments = require("strip-json-comments");
var JSHINT = require("./jshint.js").JSHINT;
var defReporter = require("./reporters/default").reporter;
Expand Down Expand Up @@ -510,7 +509,7 @@ function lint(code, results, config, data, file) {

var exports = {
extract: extract,
exit: exit,
exit: process.exit,

/**
* Returns a configuration file or nothing, if it can't be found.
Expand Down

0 comments on commit 12baf7a

Please sign in to comment.