watskeburt
Advanced tools
Comparing version 4.1.1 to 4.2.0
@@ -65,3 +65,3 @@ import { EOL } from "node:os"; | ||
type: "string", | ||
short: "x", | ||
short: "e", | ||
default: | ||
@@ -68,0 +68,0 @@ "cjs,cjsx,coffee,csx,cts,js,json,jsx,litcoffee,ls,mjs,mts,svelte,ts,tsx,vue,vuex", |
@@ -18,3 +18,3 @@ import { extname } from "node:path"; | ||
pChangeTypes.has(pChange.type) && | ||
pExtensions.has(extname(pChange.name)), | ||
(pExtensions.has(".*") || pExtensions.has(extname(pChange.name))), | ||
) | ||
@@ -21,0 +21,0 @@ .map(({ name }) => name.replace(/\\/g, "\\\\").replace(/\./g, "[.]")) |
@@ -1,1 +0,1 @@ | ||
export const VERSION = "4.1.1"; | ||
export const VERSION = "4.2.0"; |
{ | ||
"name": "watskeburt", | ||
"version": "4.1.1", | ||
"version": "4.2.0", | ||
"description": "List files changed since a git revision", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -57,3 +57,5 @@ export type changeType = | ||
/** | ||
* A comma-separated list of file extensions to include in the output | ||
* A comma-separated list of file extensions to include in the output. | ||
* When the list includes "*" all files are included. Currently applicable | ||
* to the "regex" outputType only. | ||
*/ | ||
@@ -60,0 +62,0 @@ extensions: string; |
16096
383