retire 4.4.3 → 4.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.4.4]
4
+
5
+ ### Bugfix
6
+
7
+ - CLI argument `--ext` was not working
8
+
3
9
  ## [4.4.3]
4
10
 
5
11
  ### Bugfix
package/lib/cli.js CHANGED
@@ -108,6 +108,7 @@ const config = {
108
108
  includeOsv: !!prg.includeOsv,
109
109
  verbose: !!prg.verbose,
110
110
  proxy: prg.proxy,
111
+ ext: prg.ext ?? 'js',
111
112
  };
112
113
  log.info(`retire.js v${retire.version}`);
113
114
  function exitWithError(msg) {
package/lib/retire.js CHANGED
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  var exports = exports || {};
7
- exports.version = '4.4.3';
7
+ exports.version = '4.4.4';
8
8
 
9
9
  function isDefined(o) {
10
10
  return typeof o !== 'undefined';
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "Erlend Oftedal <erlend@oftedal.no>",
3
3
  "name": "retire",
4
4
  "description": "Retire is a tool for detecting use of vulnerable libraries",
5
- "version": "4.4.3",
5
+ "version": "4.4.4",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
8
8
  "type": "git",