tsds-validate 1.5.7 → 1.7.0

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.
@@ -17,11 +17,63 @@ var _tsdsbiome = /*#__PURE__*/ _interop_require_default(require("tsds-biome"));
17
17
  var _tsdsbuild = /*#__PURE__*/ _interop_require_default(require("tsds-build"));
18
18
  var _tsdstypedoc = /*#__PURE__*/ _interop_require_default(require("tsds-typedoc"));
19
19
  var _url = /*#__PURE__*/ _interop_require_default(require("url"));
20
+ function _define_property(obj, key, value) {
21
+ if (key in obj) {
22
+ Object.defineProperty(obj, key, {
23
+ value: value,
24
+ enumerable: true,
25
+ configurable: true,
26
+ writable: true
27
+ });
28
+ } else {
29
+ obj[key] = value;
30
+ }
31
+ return obj;
32
+ }
20
33
  function _interop_require_default(obj) {
21
34
  return obj && obj.__esModule ? obj : {
22
35
  default: obj
23
36
  };
24
37
  }
38
+ function _object_spread(target) {
39
+ for(var i = 1; i < arguments.length; i++){
40
+ var source = arguments[i] != null ? arguments[i] : {};
41
+ var ownKeys = Object.keys(source);
42
+ if (typeof Object.getOwnPropertySymbols === "function") {
43
+ ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
44
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
45
+ }));
46
+ }
47
+ ownKeys.forEach(function(key) {
48
+ _define_property(target, key, source[key]);
49
+ });
50
+ }
51
+ return target;
52
+ }
53
+ function ownKeys(object, enumerableOnly) {
54
+ var keys = Object.keys(object);
55
+ if (Object.getOwnPropertySymbols) {
56
+ var symbols = Object.getOwnPropertySymbols(object);
57
+ if (enumerableOnly) {
58
+ symbols = symbols.filter(function(sym) {
59
+ return Object.getOwnPropertyDescriptor(object, sym).enumerable;
60
+ });
61
+ }
62
+ keys.push.apply(keys, symbols);
63
+ }
64
+ return keys;
65
+ }
66
+ function _object_spread_props(target, source) {
67
+ source = source != null ? source : {};
68
+ if (Object.getOwnPropertyDescriptors) {
69
+ Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
70
+ } else {
71
+ ownKeys(Object(source)).forEach(function(key) {
72
+ Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
73
+ });
74
+ }
75
+ return target;
76
+ }
25
77
  var major = +process.versions.node.split('.')[0];
26
78
  var __dirname = _path.default.dirname(typeof __filename === 'undefined' ? _url.default.fileURLToPath(require("url").pathToFileURL(__filename).toString()) : __filename);
27
79
  var dist = _path.default.join(__dirname, '..');
@@ -29,15 +81,19 @@ function run(args, options, callback) {
29
81
  try {
30
82
  var depcheck = (0, _resolvebinsync.default)('depcheck');
31
83
  var sortPackageJSON = (0, _resolvebinsync.default)('sort-package-json');
84
+ var spawnOptions = _object_spread_props(_object_spread({}, options), {
85
+ encoding: 'utf8'
86
+ });
32
87
  var queue = new _queuecb.default(1);
33
88
  queue.defer(_tsdsbiome.default.bind(null, args, options));
34
89
  queue.defer(_tsdsbuild.default.bind(null, args, options));
35
- queue.defer(_crossspawncb.default.bind(null, sortPackageJSON, [], options));
36
- queue.defer(_crossspawncb.default.bind(null, depcheck, [], options));
90
+ queue.defer(_crossspawncb.default.bind(null, sortPackageJSON, [], spawnOptions));
91
+ queue.defer(_crossspawncb.default.bind(null, depcheck, [], spawnOptions));
37
92
  queue.defer(_tsdstypedoc.default.bind(null, args, options));
38
- queue.await(callback);
93
+ queue.await(function(err) {
94
+ err ? callback(new Error(String(err.stderr) || err.message)) : callback();
95
+ });
39
96
  } catch (err) {
40
- console.log(err.message);
41
97
  return callback(err);
42
98
  }
43
99
  }
@@ -45,6 +101,9 @@ var worker = major >= 20 ? run : (0, _nodeversioncall.bind)('>=20', _path.defaul
45
101
  callbacks: true
46
102
  });
47
103
  function publish(args, options, callback) {
48
- worker(args, options, callback);
104
+ worker(args, options, function(err) {
105
+ if (err) console.log(err.message);
106
+ callback(err);
107
+ });
49
108
  }
50
109
  /* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (var key in exports) { exports.default[key] = exports[key]; } } catch (_) {}; module.exports = exports.default; }
@@ -1 +1 @@
1
- {"version":3,"sources":["/Users/kevin/Dev/OpenSource/ts-dev-stack/tsds-validate/src/command.ts"],"sourcesContent":["import spawn from 'cross-spawn-cb';\nimport { bind } from 'node-version-call';\nimport path from 'path';\nimport Queue from 'queue-cb';\nimport resolveBin from 'resolve-bin-sync';\nimport format from 'tsds-biome';\nimport build from 'tsds-build';\nimport type { CommandCallback, CommandOptions } from 'tsds-lib';\nimport docs from 'tsds-typedoc';\nimport url from 'url';\n\nconst major = +process.versions.node.split('.')[0];\nconst __dirname = path.dirname(typeof __filename === 'undefined' ? url.fileURLToPath(import.meta.url) : __filename);\nconst dist = path.join(__dirname, '..');\n\nfunction run(args: string[], options: CommandOptions, callback: CommandCallback) {\n try {\n const depcheck = resolveBin('depcheck');\n const sortPackageJSON = resolveBin('sort-package-json');\n\n const queue = new Queue(1);\n queue.defer(format.bind(null, args, options));\n queue.defer(build.bind(null, args, options));\n queue.defer(spawn.bind(null, sortPackageJSON, [], options));\n queue.defer(spawn.bind(null, depcheck, [], options));\n queue.defer(docs.bind(null, args, options));\n queue.await(callback);\n } catch (err) {\n console.log(err.message);\n return callback(err);\n }\n}\n\nconst worker = major >= 20 ? run : bind('>=20', path.join(dist, 'cjs', 'command.js'), { callbacks: true });\n\nexport default function publish(args: string[], options: CommandOptions, callback: CommandCallback) {\n worker(args, options, callback);\n}\n"],"names":["publish","major","process","versions","node","split","__dirname","path","dirname","__filename","url","fileURLToPath","dist","join","run","args","options","callback","depcheck","resolveBin","sortPackageJSON","queue","Queue","defer","format","bind","build","spawn","docs","await","err","console","log","message","worker","callbacks"],"mappings":";;;;+BAmCA;;;eAAwBA;;;mEAnCN;+BACG;2DACJ;8DACC;qEACK;gEACJ;gEACD;kEAED;0DACD;;;;;;AAEhB,IAAMC,QAAQ,CAACC,QAAQC,QAAQ,CAACC,IAAI,CAACC,KAAK,CAAC,IAAI,CAAC,EAAE;AAClD,IAAMC,YAAYC,aAAI,CAACC,OAAO,CAAC,OAAOC,eAAe,cAAcC,YAAG,CAACC,aAAa,CAAC,uDAAmBF;AACxG,IAAMG,OAAOL,aAAI,CAACM,IAAI,CAACP,WAAW;AAElC,SAASQ,IAAIC,IAAc,EAAEC,OAAuB,EAAEC,QAAyB;IAC7E,IAAI;QACF,IAAMC,WAAWC,IAAAA,uBAAU,EAAC;QAC5B,IAAMC,kBAAkBD,IAAAA,uBAAU,EAAC;QAEnC,IAAME,QAAQ,IAAIC,gBAAK,CAAC;QACxBD,MAAME,KAAK,CAACC,kBAAM,CAACC,IAAI,CAAC,MAAMV,MAAMC;QACpCK,MAAME,KAAK,CAACG,kBAAK,CAACD,IAAI,CAAC,MAAMV,MAAMC;QACnCK,MAAME,KAAK,CAACI,qBAAK,CAACF,IAAI,CAAC,MAAML,iBAAiB,EAAE,EAAEJ;QAClDK,MAAME,KAAK,CAACI,qBAAK,CAACF,IAAI,CAAC,MAAMP,UAAU,EAAE,EAAEF;QAC3CK,MAAME,KAAK,CAACK,oBAAI,CAACH,IAAI,CAAC,MAAMV,MAAMC;QAClCK,MAAMQ,KAAK,CAACZ;IACd,EAAE,OAAOa,KAAK;QACZC,QAAQC,GAAG,CAACF,IAAIG,OAAO;QACvB,OAAOhB,SAASa;IAClB;AACF;AAEA,IAAMI,SAASjC,SAAS,KAAKa,MAAMW,IAAAA,qBAAI,EAAC,QAAQlB,aAAI,CAACM,IAAI,CAACD,MAAM,OAAO,eAAe;IAAEuB,WAAW;AAAK;AAEzF,SAASnC,QAAQe,IAAc,EAAEC,OAAuB,EAAEC,QAAyB;IAChGiB,OAAOnB,MAAMC,SAASC;AACxB"}
1
+ {"version":3,"sources":["/Users/kevin/Dev/OpenSource/ts-dev-stack/tsds-validate/src/command.ts"],"sourcesContent":["import spawn, { type SpawnError } from 'cross-spawn-cb';\nimport { bind } from 'node-version-call';\nimport path from 'path';\nimport Queue from 'queue-cb';\nimport resolveBin from 'resolve-bin-sync';\nimport format from 'tsds-biome';\nimport build from 'tsds-build';\nimport type { CommandCallback, CommandOptions } from 'tsds-lib';\nimport docs from 'tsds-typedoc';\nimport url from 'url';\n\nconst major = +process.versions.node.split('.')[0];\nconst __dirname = path.dirname(typeof __filename === 'undefined' ? url.fileURLToPath(import.meta.url) : __filename);\nconst dist = path.join(__dirname, '..');\n\nfunction run(args: string[], options: CommandOptions, callback: CommandCallback) {\n try {\n const depcheck = resolveBin('depcheck');\n const sortPackageJSON = resolveBin('sort-package-json');\n const spawnOptions = { ...options, encoding: 'utf8' };\n\n const queue = new Queue(1);\n queue.defer(format.bind(null, args, options));\n queue.defer(build.bind(null, args, options));\n queue.defer(spawn.bind(null, sortPackageJSON, [], spawnOptions));\n queue.defer(spawn.bind(null, depcheck, [], spawnOptions));\n queue.defer(docs.bind(null, args, options));\n queue.await((err: SpawnError) => {\n err ? callback(new Error(String(err.stderr) || err.message)) : callback();\n });\n } catch (err) {\n return callback(err);\n }\n}\n\nconst worker = major >= 20 ? run : bind('>=20', path.join(dist, 'cjs', 'command.js'), { callbacks: true });\n\nexport default function publish(args: string[], options: CommandOptions, callback: CommandCallback) {\n worker(args, options, (err: Error) => {\n if (err) console.log(err.message);\n callback(err);\n });\n}\n"],"names":["publish","major","process","versions","node","split","__dirname","path","dirname","__filename","url","fileURLToPath","dist","join","run","args","options","callback","depcheck","resolveBin","sortPackageJSON","spawnOptions","encoding","queue","Queue","defer","format","bind","build","spawn","docs","await","err","Error","String","stderr","message","worker","callbacks","console","log"],"mappings":";;;;+BAqCA;;;eAAwBA;;;mEArCe;+BAClB;2DACJ;8DACC;qEACK;gEACJ;gEACD;kEAED;0DACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEhB,IAAMC,QAAQ,CAACC,QAAQC,QAAQ,CAACC,IAAI,CAACC,KAAK,CAAC,IAAI,CAAC,EAAE;AAClD,IAAMC,YAAYC,aAAI,CAACC,OAAO,CAAC,OAAOC,eAAe,cAAcC,YAAG,CAACC,aAAa,CAAC,uDAAmBF;AACxG,IAAMG,OAAOL,aAAI,CAACM,IAAI,CAACP,WAAW;AAElC,SAASQ,IAAIC,IAAc,EAAEC,OAAuB,EAAEC,QAAyB;IAC7E,IAAI;QACF,IAAMC,WAAWC,IAAAA,uBAAU,EAAC;QAC5B,IAAMC,kBAAkBD,IAAAA,uBAAU,EAAC;QACnC,IAAME,eAAe,wCAAKL;YAASM,UAAU;;QAE7C,IAAMC,QAAQ,IAAIC,gBAAK,CAAC;QACxBD,MAAME,KAAK,CAACC,kBAAM,CAACC,IAAI,CAAC,MAAMZ,MAAMC;QACpCO,MAAME,KAAK,CAACG,kBAAK,CAACD,IAAI,CAAC,MAAMZ,MAAMC;QACnCO,MAAME,KAAK,CAACI,qBAAK,CAACF,IAAI,CAAC,MAAMP,iBAAiB,EAAE,EAAEC;QAClDE,MAAME,KAAK,CAACI,qBAAK,CAACF,IAAI,CAAC,MAAMT,UAAU,EAAE,EAAEG;QAC3CE,MAAME,KAAK,CAACK,oBAAI,CAACH,IAAI,CAAC,MAAMZ,MAAMC;QAClCO,MAAMQ,KAAK,CAAC,SAACC;YACXA,MAAMf,SAAS,IAAIgB,MAAMC,OAAOF,IAAIG,MAAM,KAAKH,IAAII,OAAO,KAAKnB;QACjE;IACF,EAAE,OAAOe,KAAK;QACZ,OAAOf,SAASe;IAClB;AACF;AAEA,IAAMK,SAASpC,SAAS,KAAKa,MAAMa,IAAAA,qBAAI,EAAC,QAAQpB,aAAI,CAACM,IAAI,CAACD,MAAM,OAAO,eAAe;IAAE0B,WAAW;AAAK;AAEzF,SAAStC,QAAQe,IAAc,EAAEC,OAAuB,EAAEC,QAAyB;IAChGoB,OAAOtB,MAAMC,SAAS,SAACgB;QACrB,IAAIA,KAAKO,QAAQC,GAAG,CAACR,IAAII,OAAO;QAChCnB,SAASe;IACX;AACF"}
@@ -14,15 +14,20 @@ function run(args, options, callback) {
14
14
  try {
15
15
  const depcheck = resolveBin('depcheck');
16
16
  const sortPackageJSON = resolveBin('sort-package-json');
17
+ const spawnOptions = {
18
+ ...options,
19
+ encoding: 'utf8'
20
+ };
17
21
  const queue = new Queue(1);
18
22
  queue.defer(format.bind(null, args, options));
19
23
  queue.defer(build.bind(null, args, options));
20
- queue.defer(spawn.bind(null, sortPackageJSON, [], options));
21
- queue.defer(spawn.bind(null, depcheck, [], options));
24
+ queue.defer(spawn.bind(null, sortPackageJSON, [], spawnOptions));
25
+ queue.defer(spawn.bind(null, depcheck, [], spawnOptions));
22
26
  queue.defer(docs.bind(null, args, options));
23
- queue.await(callback);
27
+ queue.await((err)=>{
28
+ err ? callback(new Error(String(err.stderr) || err.message)) : callback();
29
+ });
24
30
  } catch (err) {
25
- console.log(err.message);
26
31
  return callback(err);
27
32
  }
28
33
  }
@@ -30,5 +35,8 @@ const worker = major >= 20 ? run : bind('>=20', path.join(dist, 'cjs', 'command.
30
35
  callbacks: true
31
36
  });
32
37
  export default function publish(args, options, callback) {
33
- worker(args, options, callback);
38
+ worker(args, options, (err)=>{
39
+ if (err) console.log(err.message);
40
+ callback(err);
41
+ });
34
42
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["/Users/kevin/Dev/OpenSource/ts-dev-stack/tsds-validate/src/command.ts"],"sourcesContent":["import spawn from 'cross-spawn-cb';\nimport { bind } from 'node-version-call';\nimport path from 'path';\nimport Queue from 'queue-cb';\nimport resolveBin from 'resolve-bin-sync';\nimport format from 'tsds-biome';\nimport build from 'tsds-build';\nimport type { CommandCallback, CommandOptions } from 'tsds-lib';\nimport docs from 'tsds-typedoc';\nimport url from 'url';\n\nconst major = +process.versions.node.split('.')[0];\nconst __dirname = path.dirname(typeof __filename === 'undefined' ? url.fileURLToPath(import.meta.url) : __filename);\nconst dist = path.join(__dirname, '..');\n\nfunction run(args: string[], options: CommandOptions, callback: CommandCallback) {\n try {\n const depcheck = resolveBin('depcheck');\n const sortPackageJSON = resolveBin('sort-package-json');\n\n const queue = new Queue(1);\n queue.defer(format.bind(null, args, options));\n queue.defer(build.bind(null, args, options));\n queue.defer(spawn.bind(null, sortPackageJSON, [], options));\n queue.defer(spawn.bind(null, depcheck, [], options));\n queue.defer(docs.bind(null, args, options));\n queue.await(callback);\n } catch (err) {\n console.log(err.message);\n return callback(err);\n }\n}\n\nconst worker = major >= 20 ? run : bind('>=20', path.join(dist, 'cjs', 'command.js'), { callbacks: true });\n\nexport default function publish(args: string[], options: CommandOptions, callback: CommandCallback) {\n worker(args, options, callback);\n}\n"],"names":["spawn","bind","path","Queue","resolveBin","format","build","docs","url","major","process","versions","node","split","__dirname","dirname","__filename","fileURLToPath","dist","join","run","args","options","callback","depcheck","sortPackageJSON","queue","defer","await","err","console","log","message","worker","callbacks","publish"],"mappings":"AAAA,OAAOA,WAAW,iBAAiB;AACnC,SAASC,IAAI,QAAQ,oBAAoB;AACzC,OAAOC,UAAU,OAAO;AACxB,OAAOC,WAAW,WAAW;AAC7B,OAAOC,gBAAgB,mBAAmB;AAC1C,OAAOC,YAAY,aAAa;AAChC,OAAOC,WAAW,aAAa;AAE/B,OAAOC,UAAU,eAAe;AAChC,OAAOC,SAAS,MAAM;AAEtB,MAAMC,QAAQ,CAACC,QAAQC,QAAQ,CAACC,IAAI,CAACC,KAAK,CAAC,IAAI,CAAC,EAAE;AAClD,MAAMC,YAAYZ,KAAKa,OAAO,CAAC,OAAOC,eAAe,cAAcR,IAAIS,aAAa,CAAC,YAAYT,GAAG,IAAIQ;AACxG,MAAME,OAAOhB,KAAKiB,IAAI,CAACL,WAAW;AAElC,SAASM,IAAIC,IAAc,EAAEC,OAAuB,EAAEC,QAAyB;IAC7E,IAAI;QACF,MAAMC,WAAWpB,WAAW;QAC5B,MAAMqB,kBAAkBrB,WAAW;QAEnC,MAAMsB,QAAQ,IAAIvB,MAAM;QACxBuB,MAAMC,KAAK,CAACtB,OAAOJ,IAAI,CAAC,MAAMoB,MAAMC;QACpCI,MAAMC,KAAK,CAACrB,MAAML,IAAI,CAAC,MAAMoB,MAAMC;QACnCI,MAAMC,KAAK,CAAC3B,MAAMC,IAAI,CAAC,MAAMwB,iBAAiB,EAAE,EAAEH;QAClDI,MAAMC,KAAK,CAAC3B,MAAMC,IAAI,CAAC,MAAMuB,UAAU,EAAE,EAAEF;QAC3CI,MAAMC,KAAK,CAACpB,KAAKN,IAAI,CAAC,MAAMoB,MAAMC;QAClCI,MAAME,KAAK,CAACL;IACd,EAAE,OAAOM,KAAK;QACZC,QAAQC,GAAG,CAACF,IAAIG,OAAO;QACvB,OAAOT,SAASM;IAClB;AACF;AAEA,MAAMI,SAASxB,SAAS,KAAKW,MAAMnB,KAAK,QAAQC,KAAKiB,IAAI,CAACD,MAAM,OAAO,eAAe;IAAEgB,WAAW;AAAK;AAExG,eAAe,SAASC,QAAQd,IAAc,EAAEC,OAAuB,EAAEC,QAAyB;IAChGU,OAAOZ,MAAMC,SAASC;AACxB"}
1
+ {"version":3,"sources":["/Users/kevin/Dev/OpenSource/ts-dev-stack/tsds-validate/src/command.ts"],"sourcesContent":["import spawn, { type SpawnError } from 'cross-spawn-cb';\nimport { bind } from 'node-version-call';\nimport path from 'path';\nimport Queue from 'queue-cb';\nimport resolveBin from 'resolve-bin-sync';\nimport format from 'tsds-biome';\nimport build from 'tsds-build';\nimport type { CommandCallback, CommandOptions } from 'tsds-lib';\nimport docs from 'tsds-typedoc';\nimport url from 'url';\n\nconst major = +process.versions.node.split('.')[0];\nconst __dirname = path.dirname(typeof __filename === 'undefined' ? url.fileURLToPath(import.meta.url) : __filename);\nconst dist = path.join(__dirname, '..');\n\nfunction run(args: string[], options: CommandOptions, callback: CommandCallback) {\n try {\n const depcheck = resolveBin('depcheck');\n const sortPackageJSON = resolveBin('sort-package-json');\n const spawnOptions = { ...options, encoding: 'utf8' };\n\n const queue = new Queue(1);\n queue.defer(format.bind(null, args, options));\n queue.defer(build.bind(null, args, options));\n queue.defer(spawn.bind(null, sortPackageJSON, [], spawnOptions));\n queue.defer(spawn.bind(null, depcheck, [], spawnOptions));\n queue.defer(docs.bind(null, args, options));\n queue.await((err: SpawnError) => {\n err ? callback(new Error(String(err.stderr) || err.message)) : callback();\n });\n } catch (err) {\n return callback(err);\n }\n}\n\nconst worker = major >= 20 ? run : bind('>=20', path.join(dist, 'cjs', 'command.js'), { callbacks: true });\n\nexport default function publish(args: string[], options: CommandOptions, callback: CommandCallback) {\n worker(args, options, (err: Error) => {\n if (err) console.log(err.message);\n callback(err);\n });\n}\n"],"names":["spawn","bind","path","Queue","resolveBin","format","build","docs","url","major","process","versions","node","split","__dirname","dirname","__filename","fileURLToPath","dist","join","run","args","options","callback","depcheck","sortPackageJSON","spawnOptions","encoding","queue","defer","await","err","Error","String","stderr","message","worker","callbacks","publish","console","log"],"mappings":"AAAA,OAAOA,WAAgC,iBAAiB;AACxD,SAASC,IAAI,QAAQ,oBAAoB;AACzC,OAAOC,UAAU,OAAO;AACxB,OAAOC,WAAW,WAAW;AAC7B,OAAOC,gBAAgB,mBAAmB;AAC1C,OAAOC,YAAY,aAAa;AAChC,OAAOC,WAAW,aAAa;AAE/B,OAAOC,UAAU,eAAe;AAChC,OAAOC,SAAS,MAAM;AAEtB,MAAMC,QAAQ,CAACC,QAAQC,QAAQ,CAACC,IAAI,CAACC,KAAK,CAAC,IAAI,CAAC,EAAE;AAClD,MAAMC,YAAYZ,KAAKa,OAAO,CAAC,OAAOC,eAAe,cAAcR,IAAIS,aAAa,CAAC,YAAYT,GAAG,IAAIQ;AACxG,MAAME,OAAOhB,KAAKiB,IAAI,CAACL,WAAW;AAElC,SAASM,IAAIC,IAAc,EAAEC,OAAuB,EAAEC,QAAyB;IAC7E,IAAI;QACF,MAAMC,WAAWpB,WAAW;QAC5B,MAAMqB,kBAAkBrB,WAAW;QACnC,MAAMsB,eAAe;YAAE,GAAGJ,OAAO;YAAEK,UAAU;QAAO;QAEpD,MAAMC,QAAQ,IAAIzB,MAAM;QACxByB,MAAMC,KAAK,CAACxB,OAAOJ,IAAI,CAAC,MAAMoB,MAAMC;QACpCM,MAAMC,KAAK,CAACvB,MAAML,IAAI,CAAC,MAAMoB,MAAMC;QACnCM,MAAMC,KAAK,CAAC7B,MAAMC,IAAI,CAAC,MAAMwB,iBAAiB,EAAE,EAAEC;QAClDE,MAAMC,KAAK,CAAC7B,MAAMC,IAAI,CAAC,MAAMuB,UAAU,EAAE,EAAEE;QAC3CE,MAAMC,KAAK,CAACtB,KAAKN,IAAI,CAAC,MAAMoB,MAAMC;QAClCM,MAAME,KAAK,CAAC,CAACC;YACXA,MAAMR,SAAS,IAAIS,MAAMC,OAAOF,IAAIG,MAAM,KAAKH,IAAII,OAAO,KAAKZ;QACjE;IACF,EAAE,OAAOQ,KAAK;QACZ,OAAOR,SAASQ;IAClB;AACF;AAEA,MAAMK,SAAS3B,SAAS,KAAKW,MAAMnB,KAAK,QAAQC,KAAKiB,IAAI,CAACD,MAAM,OAAO,eAAe;IAAEmB,WAAW;AAAK;AAExG,eAAe,SAASC,QAAQjB,IAAc,EAAEC,OAAuB,EAAEC,QAAyB;IAChGa,OAAOf,MAAMC,SAAS,CAACS;QACrB,IAAIA,KAAKQ,QAAQC,GAAG,CAACT,IAAII,OAAO;QAChCZ,SAASQ;IACX;AACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsds-validate",
3
- "version": "1.5.7",
3
+ "version": "1.7.0",
4
4
  "description": "Development stack for TypeScript libraries",
5
5
  "keywords": [
6
6
  "c8",
@@ -44,14 +44,14 @@
44
44
  "dependencies": {
45
45
  "cross-spawn-cb": "^3.0.0",
46
46
  "depcheck": "^1.4.7",
47
- "node-version-call": "^2.1.0",
47
+ "node-version-call": "^3.0.0",
48
48
  "queue-cb": "^1.6.3",
49
49
  "resolve-bin-sync": "^1.0.12",
50
- "sort-package-json": "^3.6.0",
51
- "tsds-biome": "^1.21.0",
52
- "tsds-build": "^1.21.0",
50
+ "sort-package-json": "2.15.1",
51
+ "tsds-biome": "^1.21.1",
52
+ "tsds-build": "^1.21.1",
53
53
  "tsds-lib": "^1.21.1",
54
- "tsds-typedoc": "^1.20.4"
54
+ "tsds-typedoc": "^1.20.5"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@types/mocha": "*",