kmore-cli
Advanced tools
Comparing version 59.5.2 to 59.5.3
#!/usr/bin/env tsx | ||
/* eslint-disable node/no-process-exit */ | ||
/** | ||
@@ -5,0 +4,0 @@ * kmore-cli |
@@ -48,3 +48,7 @@ import { cmdSet, initialCliArgs } from './config.js'; | ||
if (propMap.has(upperKey)) { | ||
Object.defineProperty(opts, propMap.get(upperKey), { | ||
const tmpKey = propMap.get(upperKey); | ||
if (!tmpKey) { | ||
return; | ||
} | ||
Object.defineProperty(opts, tmpKey, { | ||
configurable: true, | ||
@@ -51,0 +55,0 @@ enumerable: true, |
{ | ||
"name": "kmore-cli", | ||
"author": "waiting", | ||
"version": "59.5.2", | ||
"version": "59.5.3", | ||
"description": "Command line to generate dicts from ts source files for kmore", | ||
@@ -41,3 +41,3 @@ "keywords": [ | ||
"@waiting/shared-types-dev": "^17.0.0", | ||
"kmore-types": "^59.5.2", | ||
"kmore-types": "^59.5.3", | ||
"minimist": "^1.2.8", | ||
@@ -71,2 +71,3 @@ "rxjs": "^7.8.1", | ||
"build": "npm run tsc && tsc-alias && npm run rp", | ||
"build:test": "tsc -p test/tsconfig.json", | ||
"clean": "npm run clean:lock && npm run clean:dist && npm run clean:log", | ||
@@ -78,5 +79,5 @@ "clean:cache": "rm -rf .eslintcache .tsbuildinfo", | ||
"cov": "c8 --all npm run test -- --parallel=false", | ||
"lint": "eslint --fix --cache {src,test}/**/*.ts", | ||
"lint:nofix": "eslint --cache {src,test}/**/*.ts", | ||
"pretest": "npm run build", | ||
"lint": "eslint --fix --cache src test", | ||
"lint:nofix": "eslint --cache src test", | ||
"pretest": "npm run build && npm run build:test", | ||
"rp": "tsx bin-hashbang.js", | ||
@@ -86,3 +87,3 @@ "test": "cross-env NODE_ENV=test TS_NODE_PROJECT=test/tsconfig.json mocha --parallel=false", | ||
}, | ||
"gitHead": "c985178b5bddb45f70fd8c9b58a04c76f1093f2f" | ||
"gitHead": "137fd257e3cc2ab34a35e3e04c9b49a65f3c7277" | ||
} |
@@ -1,2 +0,1 @@ | ||
/* eslint-disable node/no-process-exit */ | ||
/** | ||
@@ -3,0 +2,0 @@ * kmore-cli |
@@ -75,3 +75,5 @@ import type { ParsedArgs } from 'minimist' | ||
if (propMap.has(upperKey)) { | ||
Object.defineProperty(opts, propMap.get(upperKey) as string, { | ||
const tmpKey = propMap.get(upperKey) | ||
if (! tmpKey) { return } | ||
Object.defineProperty(opts, tmpKey, { | ||
configurable: true, | ||
@@ -78,0 +80,0 @@ enumerable: true, |
@@ -120,5 +120,3 @@ import assert from 'node:assert' | ||
}), | ||
filter( | ||
ev => ev.type === EntryType.file && ev.path.endsWith('.ts') && ! ev.path.endsWith('.d.ts'), | ||
), | ||
filter(ev => ev.type === EntryType.file && ev.path.endsWith('.ts') && ! ev.path.endsWith('.d.ts')), | ||
map(ev => ev.path), | ||
@@ -125,0 +123,0 @@ mergeMap(async (path) => { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
49317
971
Updatedkmore-types@^59.5.3