@piedata/pieui 1.2.2 → 1.2.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/dist/cli.js CHANGED
@@ -4,29 +4,15 @@ var __getProtoOf = Object.getPrototypeOf;
4
4
  var __defProp = Object.defineProperty;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- function __accessProp(key) {
8
- return this[key];
9
- }
10
- var __toESMCache_node;
11
- var __toESMCache_esm;
12
7
  var __toESM = (mod, isNodeMode, target) => {
13
- var canCache = mod != null && typeof mod === "object";
14
- if (canCache) {
15
- var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
16
- var cached = cache.get(mod);
17
- if (cached)
18
- return cached;
19
- }
20
8
  target = mod != null ? __create(__getProtoOf(mod)) : {};
21
9
  const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
22
10
  for (let key of __getOwnPropNames(mod))
23
11
  if (!__hasOwnProp.call(to, key))
24
12
  __defProp(to, key, {
25
- get: __accessProp.bind(mod, key),
13
+ get: () => mod[key],
26
14
  enumerable: true
27
15
  });
28
- if (canCache)
29
- cache.set(mod, to);
30
16
  return to;
31
17
  };
32
18
  var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
@@ -523,7 +509,8 @@ var require_minimatch = __commonJS((exports2, module2) => {
523
509
  var path = function() {
524
510
  try {
525
511
  return require("path");
526
- } catch (e) {}
512
+ } catch (e) {
513
+ }
527
514
  }() || {
528
515
  sep: "/"
529
516
  };
@@ -572,25 +559,25 @@ var require_minimatch = __commonJS((exports2, module2) => {
572
559
  return minimatch;
573
560
  }
574
561
  var orig = minimatch;
575
- var m = function minimatch2(p, pattern, options) {
562
+ var m = function minimatch(p, pattern, options) {
576
563
  return orig(p, pattern, ext(def, options));
577
564
  };
578
- m.Minimatch = function Minimatch2(pattern, options) {
565
+ m.Minimatch = function Minimatch(pattern, options) {
579
566
  return new orig.Minimatch(pattern, ext(def, options));
580
567
  };
581
568
  m.Minimatch.defaults = function defaults(options) {
582
569
  return orig.defaults(ext(def, options)).Minimatch;
583
570
  };
584
- m.filter = function filter2(pattern, options) {
571
+ m.filter = function filter(pattern, options) {
585
572
  return orig.filter(pattern, ext(def, options));
586
573
  };
587
574
  m.defaults = function defaults(options) {
588
575
  return orig.defaults(ext(def, options));
589
576
  };
590
- m.makeRe = function makeRe2(pattern, options) {
577
+ m.makeRe = function makeRe(pattern, options) {
591
578
  return orig.makeRe(pattern, ext(def, options));
592
579
  };
593
- m.braceExpand = function braceExpand2(pattern, options) {
580
+ m.braceExpand = function braceExpand(pattern, options) {
594
581
  return orig.braceExpand(pattern, ext(def, options));
595
582
  };
596
583
  m.match = function(list, pattern, options) {
@@ -632,7 +619,8 @@ var require_minimatch = __commonJS((exports2, module2) => {
632
619
  this.partial = !!options.partial;
633
620
  this.make();
634
621
  }
635
- Minimatch.prototype.debug = function() {};
622
+ Minimatch.prototype.debug = function() {
623
+ };
636
624
  Minimatch.prototype.make = make;
637
625
  function make() {
638
626
  var pattern = this.pattern;
@@ -1200,7 +1188,8 @@ var require_inherits_browser = __commonJS((exports2, module2) => {
1200
1188
  module2.exports = function inherits(ctor, superCtor) {
1201
1189
  if (superCtor) {
1202
1190
  ctor.super_ = superCtor;
1203
- var TempCtor = function() {};
1191
+ var TempCtor = function() {
1192
+ };
1204
1193
  TempCtor.prototype = superCtor.prototype;
1205
1194
  ctor.prototype = new TempCtor;
1206
1195
  ctor.prototype.constructor = ctor;
@@ -6534,7 +6523,8 @@ var require_typescript = __commonJS((exports2, module2) => {
6534
6523
  return value2;
6535
6524
  return Debug.fail(`Invalid cast. The supplied value ${value2} did not pass the test '${Debug.getFunctionName(test)}'.`);
6536
6525
  }
6537
- function noop(_2) {}
6526
+ function noop(_2) {
6527
+ }
6538
6528
  function returnFalse() {
6539
6529
  return false;
6540
6530
  }
@@ -6897,7 +6887,8 @@ var require_typescript = __commonJS((exports2, module2) => {
6897
6887
  function not(fn) {
6898
6888
  return (...args) => !fn(...args);
6899
6889
  }
6900
- function assertType(_2) {}
6890
+ function assertType(_2) {
6891
+ }
6901
6892
  function singleElementArray(t) {
6902
6893
  return t === undefined ? undefined : [t];
6903
6894
  }
@@ -7168,7 +7159,8 @@ Verbose Debug Information: ` + (typeof verboseDebugInfo === "string" ? verboseDe
7168
7159
  }
7169
7160
  }
7170
7161
  Debug2.assertMissingNode = assertMissingNode;
7171
- function type(_value) {}
7162
+ function type(_value) {
7163
+ }
7172
7164
  Debug2.type = type;
7173
7165
  function getFunctionName(func) {
7174
7166
  if (typeof func !== "function") {
@@ -8179,7 +8171,8 @@ ${lanes.join(`
8179
8171
  performance: performance2
8180
8172
  };
8181
8173
  }
8182
- } catch {}
8174
+ } catch {
8175
+ }
8183
8176
  }
8184
8177
  if (typeof performance === "object") {
8185
8178
  return {
@@ -11303,7 +11296,8 @@ ${lanes.join(`
11303
11296
  if (stat == null ? undefined : stat.isFile()) {
11304
11297
  return stat.size;
11305
11298
  }
11306
- } catch {}
11299
+ } catch {
11300
+ }
11307
11301
  return 0;
11308
11302
  },
11309
11303
  exit(exitCode) {
@@ -11317,7 +11311,8 @@ ${lanes.join(`
11317
11311
  tryEnableSourceMapsForHost() {
11318
11312
  try {
11319
11313
  (()=>{throw new Error("Cannot require module "+"source-map-support");})().install();
11320
- } catch {}
11314
+ } catch {
11315
+ }
11321
11316
  },
11322
11317
  setTimeout,
11323
11318
  clearTimeout,
@@ -11395,10 +11390,12 @@ ${lanes.join(`
11395
11390
  if ((_a = statSync(profilePath)) == null ? undefined : _a.isDirectory()) {
11396
11391
  profilePath = _path.join(profilePath, `${(/* @__PURE__ */ new Date()).toISOString().replace(/:/g, "-")}+P${process.pid}.cpuprofile`);
11397
11392
  }
11398
- } catch {}
11393
+ } catch {
11394
+ }
11399
11395
  try {
11400
11396
  _fs.mkdirSync(_path.dirname(profilePath), { recursive: true });
11401
- } catch {}
11397
+ } catch {
11398
+ }
11402
11399
  _fs.writeFileSync(profilePath, JSON.stringify(cleanupPaths(profile)));
11403
11400
  }
11404
11401
  activeSession = undefined;
@@ -62113,7 +62110,8 @@ ${lanes.join(`
62113
62110
  function getAnonymousPartialType(type2) {
62114
62111
  const members = createSymbolTable();
62115
62112
  for (const prop of getPropertiesOfType(type2)) {
62116
- if (getDeclarationModifierFlagsFromSymbol(prop) & (2 | 4)) {} else if (isSpreadableProperty(prop)) {
62113
+ if (getDeclarationModifierFlagsFromSymbol(prop) & (2 | 4)) {
62114
+ } else if (isSpreadableProperty(prop)) {
62117
62115
  const isSetonlyAccessor = prop.flags & 65536 && !(prop.flags & 32768);
62118
62116
  const flags = 4 | 16777216;
62119
62117
  const result = createSymbol(flags, prop.escapedName, getIsLateCheckFlag(prop) | (readonly ? 8 : 0));
@@ -64418,7 +64416,8 @@ ${lanes.join(`
64418
64416
  const id = getRelationKey(source2, target2, intersectionState, relation, false);
64419
64417
  const entry = relation.get(id);
64420
64418
  if (entry !== undefined) {
64421
- if (reportErrors2 && entry & 2 && !(entry & 4)) {} else {
64419
+ if (reportErrors2 && entry & 2 && !(entry & 4)) {
64420
+ } else {
64422
64421
  if (outofbandVarianceMarkerHandler) {
64423
64422
  const saved = entry & 24;
64424
64423
  if (saved & 8) {
@@ -69690,7 +69689,8 @@ ${lanes.join(`
69690
69689
  if (!location.parent.parent.moduleSpecifier && !location.isTypeOnly && !location.parent.parent.isTypeOnly) {
69691
69690
  const exportedName = location.propertyName || location.name;
69692
69691
  const symbol = resolveName(exportedName, exportedName.escapedText, 111551 | 788968 | 1920 | 2097152, undefined, true);
69693
- if (symbol && (symbol === undefinedSymbol || symbol === globalThisSymbol || symbol.declarations && isGlobalSourceFile(getDeclarationContainer(symbol.declarations[0])))) {} else {
69692
+ if (symbol && (symbol === undefinedSymbol || symbol === globalThisSymbol || symbol.declarations && isGlobalSourceFile(getDeclarationContainer(symbol.declarations[0])))) {
69693
+ } else {
69694
69694
  const target = symbol && (symbol.flags & 2097152 ? resolveAlias(symbol) : symbol);
69695
69695
  if (!target || getSymbolFlags(target) & 111551) {
69696
69696
  markExportAsReferenced(location);
@@ -85148,7 +85148,8 @@ ${lanes.join(`
85148
85148
  if (!links2.hasReportedStatementInAmbientContext) {
85149
85149
  return links2.hasReportedStatementInAmbientContext = grammarErrorOnFirstToken(node, Diagnostics.Statements_are_not_allowed_in_ambient_contexts);
85150
85150
  }
85151
- } else {}
85151
+ } else {
85152
+ }
85152
85153
  }
85153
85154
  return false;
85154
85155
  }
@@ -86381,7 +86382,8 @@ ${lanes.join(`
86381
86382
  if (isRawSourceMap(parsed)) {
86382
86383
  return parsed;
86383
86384
  }
86384
- } catch {}
86385
+ } catch {
86386
+ }
86385
86387
  return;
86386
86388
  }
86387
86389
  function decodeMappings(mappings) {
@@ -94570,7 +94572,8 @@ ${lanes.join(`
94570
94572
  ], 2));
94571
94573
  setParentRecursive(requireStatement, false);
94572
94574
  statements = insertStatementAfterCustomPrologue(statements.slice(), requireStatement);
94573
- } else {}
94575
+ } else {
94576
+ }
94574
94577
  }
94575
94578
  }
94576
94579
  if (statements !== visited.statements) {
@@ -112715,7 +112718,8 @@ ${lanes.join(`
112715
112718
  if (sourceFile) {
112716
112719
  return getSemanticDiagnosticsOfFile(state, sourceFile, cancellationToken);
112717
112720
  }
112718
- while (getSemanticDiagnosticsOfNextAffectedFile(cancellationToken)) {}
112721
+ while (getSemanticDiagnosticsOfNextAffectedFile(cancellationToken)) {
112722
+ }
112719
112723
  let diagnostics;
112720
112724
  for (const sourceFile2 of Debug.checkDefined(state.program).getSourceFiles()) {
112721
112725
  diagnostics = addRange(diagnostics, getSemanticDiagnosticsOfFile(state, sourceFile2, cancellationToken));
@@ -133607,7 +133611,8 @@ ${newComment.split(`
133607
133611
  var _a, _b, _c, _d;
133608
133612
  if (key === "constructor" && member.valueDeclaration) {
133609
133613
  const prototypeAssignment = (_d = (_c = (_b = (_a = symbol.exports) == null ? undefined : _a.get("prototype")) == null ? undefined : _b.declarations) == null ? undefined : _c[0]) == null ? undefined : _d.parent;
133610
- if (prototypeAssignment && isBinaryExpression(prototypeAssignment) && isObjectLiteralExpression(prototypeAssignment.right) && some(prototypeAssignment.right.properties, isConstructorAssignment)) {} else {
133614
+ if (prototypeAssignment && isBinaryExpression(prototypeAssignment) && isObjectLiteralExpression(prototypeAssignment.right) && some(prototypeAssignment.right.properties, isConstructorAssignment)) {
133615
+ } else {
133611
133616
  changes.delete(sourceFile, member.valueDeclaration.parent);
133612
133617
  }
133613
133618
  return;
@@ -139992,7 +139997,8 @@ ${newComment.split(`
139992
139997
  usage.isNumber = true;
139993
139998
  } else if (otherOperandType.flags & 402653316) {
139994
139999
  usage.isString = true;
139995
- } else if (otherOperandType.flags & 1) {} else {
140000
+ } else if (otherOperandType.flags & 1) {
140001
+ } else {
139996
140002
  usage.isNumberOrString = true;
139997
140003
  }
139998
140004
  break;
@@ -159002,7 +159008,8 @@ ${options.prefix}` : `
159002
159008
  ScriptTarget11["Latest"] = "esnext";
159003
159009
  return ScriptTarget11;
159004
159010
  })(ScriptTarget10 || {});
159005
- {}
159011
+ {
159012
+ }
159006
159013
  var TextStorage = class {
159007
159014
  constructor(host, info, initialVersion) {
159008
159015
  this.host = host;
@@ -160578,24 +160585,24 @@ ${options.prefix}` : `
160578
160585
  }
160579
160586
  filesToStringWorker(writeProjectFileNames, writeFileExplaination, writeFileVersionAndText) {
160580
160587
  if (this.isInitialLoadPending())
160581
- return ` Files (0) InitialLoadPending
160588
+ return `\tFiles (0) InitialLoadPending
160582
160589
  `;
160583
160590
  if (!this.program)
160584
- return ` Files (0) NoProgram
160591
+ return `\tFiles (0) NoProgram
160585
160592
  `;
160586
160593
  const sourceFiles = this.program.getSourceFiles();
160587
- let strBuilder = ` Files (${sourceFiles.length})
160594
+ let strBuilder = `\tFiles (${sourceFiles.length})
160588
160595
  `;
160589
160596
  if (writeProjectFileNames) {
160590
160597
  for (const file of sourceFiles) {
160591
- strBuilder += ` ${file.fileName}${writeFileVersionAndText ? ` ${file.version} ${JSON.stringify(file.text)}` : ""}
160598
+ strBuilder += `\t${file.fileName}${writeFileVersionAndText ? ` ${file.version} ${JSON.stringify(file.text)}` : ""}
160592
160599
  `;
160593
160600
  }
160594
160601
  if (writeFileExplaination) {
160595
160602
  strBuilder += `
160596
160603
 
160597
160604
  `;
160598
- explainFiles(this.program, (s) => strBuilder += ` ${s}
160605
+ explainFiles(this.program, (s) => strBuilder += `\t${s}
160599
160606
  `);
160600
160607
  }
160601
160608
  }
@@ -162645,8 +162652,8 @@ ${options.prefix}` : `
162645
162652
  this.logger.info("Open files: ");
162646
162653
  this.openFiles.forEach((projectRootPath, path) => {
162647
162654
  const info = this.getScriptInfoForPath(path);
162648
- this.logger.info(` FileName: ${info.fileName} ProjectRootPath: ${projectRootPath}`);
162649
- this.logger.info(` Projects: ${info.containingProjects.map((p) => p.getProjectName())}`);
162655
+ this.logger.info(`\tFileName: ${info.fileName} ProjectRootPath: ${projectRootPath}`);
162656
+ this.logger.info(`\t\tProjects: ${info.containingProjects.map((p) => p.getProjectName())}`);
162650
162657
  });
162651
162658
  this.logger.endGroup();
162652
162659
  }
@@ -165468,7 +165475,8 @@ ${json}${newLine}`;
165468
165475
  File text of ${fileRequest.file}:${indent2(text)}
165469
165476
  `;
165470
165477
  }
165471
- } catch {}
165478
+ } catch {
165479
+ }
165472
165480
  }
165473
165481
  if (err.ProgramFiles) {
165474
165482
  msg += `
@@ -166850,7 +166858,9 @@ ${e.message}`;
166850
166858
  const commands = args.command;
166851
166859
  for (const command of toArray(commands)) {
166852
166860
  const { file, project } = this.getFileAndProject(command);
166853
- project.getLanguageService().applyCodeActionCommand(command, this.getFormatOptions(file)).then((_result) => {}, (_error) => {});
166861
+ project.getLanguageService().applyCodeActionCommand(command, this.getFormatOptions(file)).then((_result) => {
166862
+ }, (_error) => {
166863
+ });
166854
166864
  }
166855
166865
  return {};
166856
166866
  }
@@ -167070,7 +167080,8 @@ ${e.message}`;
167070
167080
  const name = this.host.useCaseSensitiveFileNames ? fileName : toFileNameLowerCase(fileName);
167071
167081
  return normalizePath(name);
167072
167082
  }
167073
- exit() {}
167083
+ exit() {
167084
+ }
167074
167085
  notRequired() {
167075
167086
  return { responseRequired: false };
167076
167087
  }
@@ -168260,7 +168271,7 @@ var require_make_error = __commonJS((exports2, module2) => {
168260
168271
  var defineProperty = Object.defineProperty;
168261
168272
  var captureStackTrace = Error.captureStackTrace;
168262
168273
  if (captureStackTrace === undefined) {
168263
- captureStackTrace = function captureStackTrace2(error) {
168274
+ captureStackTrace = function captureStackTrace(error) {
168264
168275
  var container = new Error;
168265
168276
  defineProperty(error, "stack", {
168266
168277
  configurable: true,
@@ -168316,12 +168327,14 @@ var require_make_error = __commonJS((exports2, module2) => {
168316
168327
  });
168317
168328
  }
168318
168329
  try {
168319
- var f = function() {};
168330
+ var f = function() {
168331
+ };
168320
168332
  setFunctionName2(f, "foo");
168321
168333
  if (f.name === "foo") {
168322
168334
  return setFunctionName2;
168323
168335
  }
168324
- } catch (_2) {}
168336
+ } catch (_2) {
168337
+ }
168325
168338
  }();
168326
168339
  function makeError(constructor, super_) {
168327
168340
  if (super_ == null || super_ === Error) {
@@ -169642,7 +169655,8 @@ var require_resolver_functions = __commonJS((exports2) => {
169642
169655
  let typesNodePackageJsonPath;
169643
169656
  try {
169644
169657
  typesNodePackageJsonPath = projectLocalResolveHelper("@types/node/package.json", true);
169645
- } catch {}
169658
+ } catch {
169659
+ }
169646
169660
  if (typesNodePackageJsonPath) {
169647
169661
  const typeRoots = [(0, path_1.resolve)(typesNodePackageJsonPath, "../..")];
169648
169662
  ({ resolvedTypeReferenceDirective } = ts2.resolveTypeReferenceDirective(typeDirectiveName, containingFile, {
@@ -169966,7 +169980,8 @@ var require_node_options = __commonJS((exports2) => {
169966
169980
  function getNodeOptionsEnvArgv() {
169967
169981
  const errors = [];
169968
169982
  const envArgv = ParseNodeOptionsEnvVar(process.env.NODE_OPTIONS || "", errors);
169969
- if (errors.length !== 0) {}
169983
+ if (errors.length !== 0) {
169984
+ }
169970
169985
  return envArgv;
169971
169986
  }
169972
169987
  function ParseNodeOptionsEnvVar(node_options, errors) {
@@ -170842,7 +170857,7 @@ var require_acorn = __commonJS((exports2, module2) => {
170842
170857
  }
170843
170858
  return isInAstralSet(code, astralIdentifierStartCodes) || isInAstralSet(code, astralIdentifierCodes);
170844
170859
  }
170845
- var TokenType = function TokenType2(label, conf) {
170860
+ var TokenType = function TokenType(label, conf) {
170846
170861
  if (conf === undefined)
170847
170862
  conf = {};
170848
170863
  this.label = label;
@@ -170985,14 +171000,14 @@ var require_acorn = __commonJS((exports2, module2) => {
170985
171000
  return String.fromCharCode((code >> 10) + 55296, (code & 1023) + 56320);
170986
171001
  }
170987
171002
  var loneSurrogate = /(?:[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/;
170988
- var Position = function Position2(line, col) {
171003
+ var Position = function Position(line, col) {
170989
171004
  this.line = line;
170990
171005
  this.column = col;
170991
171006
  };
170992
171007
  Position.prototype.offset = function offset(n7) {
170993
171008
  return new Position(this.line, this.column + n7);
170994
171009
  };
170995
- var SourceLocation = function SourceLocation2(p, start, end) {
171010
+ var SourceLocation = function SourceLocation(p, start, end) {
170996
171011
  this.start = start;
170997
171012
  this.end = end;
170998
171013
  if (p.sourceFile !== null) {
@@ -171090,7 +171105,7 @@ Defaulting to 2020, but this will stop working in the future.`);
171090
171105
  return SCOPE_FUNCTION | (async ? SCOPE_ASYNC : 0) | (generator ? SCOPE_GENERATOR : 0);
171091
171106
  }
171092
171107
  var BIND_NONE = 0, BIND_VAR = 1, BIND_LEXICAL = 2, BIND_FUNCTION = 3, BIND_SIMPLE_CATCH = 4, BIND_OUTSIDE = 5;
171093
- var Parser = function Parser2(options, input, startPos) {
171108
+ var Parser = function Parser(options, input, startPos) {
171094
171109
  this.options = options = getOptions(options);
171095
171110
  this.sourceFile = options.sourceFile;
171096
171111
  this.keywords = wordsRegexp(keywords$1[options.ecmaVersion >= 6 ? 6 : options.sourceType === "module" ? "5module" : 5]);
@@ -171140,7 +171155,7 @@ Defaulting to 2020, but this will stop working in the future.`);
171140
171155
  this.privateNameStack = [];
171141
171156
  };
171142
171157
  var prototypeAccessors = { inFunction: { configurable: true }, inGenerator: { configurable: true }, inAsync: { configurable: true }, canAwait: { configurable: true }, allowReturn: { configurable: true }, allowSuper: { configurable: true }, allowDirectSuper: { configurable: true }, treatFunctionsAsVar: { configurable: true }, allowNewDotTarget: { configurable: true }, allowUsing: { configurable: true }, inClassStaticBlock: { configurable: true } };
171143
- Parser.prototype.parse = function parse2() {
171158
+ Parser.prototype.parse = function parse() {
171144
171159
  var node = this.options.program || this.startNode();
171145
171160
  this.nextToken();
171146
171161
  return this.parseTopLevel(node);
@@ -171221,15 +171236,15 @@ Defaulting to 2020, but this will stop working in the future.`);
171221
171236
  }
171222
171237
  return cls;
171223
171238
  };
171224
- Parser.parse = function parse2(input, options) {
171239
+ Parser.parse = function parse(input, options) {
171225
171240
  return new this(options, input).parse();
171226
171241
  };
171227
- Parser.parseExpressionAt = function parseExpressionAt2(input, pos, options) {
171242
+ Parser.parseExpressionAt = function parseExpressionAt(input, pos, options) {
171228
171243
  var parser = new this(options, input, pos);
171229
171244
  parser.nextToken();
171230
171245
  return parser.parseExpression();
171231
171246
  };
171232
- Parser.tokenizer = function tokenizer2(input, options) {
171247
+ Parser.tokenizer = function tokenizer(input, options) {
171233
171248
  return new this(options, input);
171234
171249
  };
171235
171250
  Object.defineProperties(Parser.prototype, prototypeAccessors);
@@ -171316,7 +171331,7 @@ Defaulting to 2020, but this will stop working in the future.`);
171316
171331
  pp$9.unexpected = function(pos) {
171317
171332
  this.raise(pos != null ? pos : this.start, "Unexpected token");
171318
171333
  };
171319
- var DestructuringErrors = function DestructuringErrors2() {
171334
+ var DestructuringErrors = function DestructuringErrors() {
171320
171335
  this.shorthandAssign = this.trailingComma = this.parenthesizedAssign = this.parenthesizedBind = this.doubleProto = -1;
171321
171336
  };
171322
171337
  pp$9.checkPatternErrors = function(refDestructuringErrors, isAssign) {
@@ -172736,7 +172751,7 @@ Defaulting to 2020, but this will stop working in the future.`);
172736
172751
  this.checkLValPattern(expr, bindingType, checkClashes);
172737
172752
  }
172738
172753
  };
172739
- var TokContext = function TokContext2(token, isExpr, preserveSpace, override, generator) {
172754
+ var TokContext = function TokContext(token, isExpr, preserveSpace, override, generator) {
172740
172755
  this.token = token;
172741
172756
  this.isExpr = !!isExpr;
172742
172757
  this.preserveSpace = !!preserveSpace;
@@ -172834,7 +172849,8 @@ Defaulting to 2020, but this will stop working in the future.`);
172834
172849
  this.context.push(statementParens ? types.p_stat : types.p_expr);
172835
172850
  this.exprAllowed = true;
172836
172851
  };
172837
- types$1.incDec.updateContext = function() {};
172852
+ types$1.incDec.updateContext = function() {
172853
+ };
172838
172854
  types$1._function.updateContext = types$1._class.updateContext = function(prevType) {
172839
172855
  if (prevType.beforeExpr && prevType !== types$1._else && !(prevType === types$1.semi && this.curContext() !== types.p_stat) && !(prevType === types$1._return && lineBreak.test(this.input.slice(this.lastTokEnd, this.start))) && !((prevType === types$1.colon || prevType === types$1.braceL) && this.curContext() === types.b_stat)) {
172840
172856
  this.context.push(types.f_expr);
@@ -173944,7 +173960,7 @@ Defaulting to 2020, but this will stop working in the future.`);
173944
173960
  }
173945
173961
  };
173946
173962
  var pp$3 = Parser.prototype;
173947
- var Scope = function Scope2(flags) {
173963
+ var Scope = function Scope(flags) {
173948
173964
  this.flags = flags;
173949
173965
  this.var = [];
173950
173966
  this.lexical = [];
@@ -174023,7 +174039,7 @@ Defaulting to 2020, but this will stop working in the future.`);
174023
174039
  }
174024
174040
  }
174025
174041
  };
174026
- var Node = function Node2(parser, pos, loc) {
174042
+ var Node = function Node(parser, pos, loc) {
174027
174043
  this.type = "";
174028
174044
  this.start = pos;
174029
174045
  this.end = 0;
@@ -174127,7 +174143,7 @@ Defaulting to 2020, but this will stop working in the future.`);
174127
174143
  buildUnicodeData(ecmaVersion);
174128
174144
  }
174129
174145
  var pp$1 = Parser.prototype;
174130
- var BranchID = function BranchID2(parent, base) {
174146
+ var BranchID = function BranchID(parent, base) {
174131
174147
  this.parent = parent;
174132
174148
  this.base = base || this;
174133
174149
  };
@@ -174144,7 +174160,7 @@ Defaulting to 2020, but this will stop working in the future.`);
174144
174160
  BranchID.prototype.sibling = function sibling() {
174145
174161
  return new BranchID(this.parent, this.base);
174146
174162
  };
174147
- var RegExpValidationState = function RegExpValidationState2(parser) {
174163
+ var RegExpValidationState = function RegExpValidationState(parser) {
174148
174164
  this.parser = parser;
174149
174165
  this.validFlags = "gim" + (parser.options.ecmaVersion >= 6 ? "uy" : "") + (parser.options.ecmaVersion >= 9 ? "s" : "") + (parser.options.ecmaVersion >= 13 ? "d" : "") + (parser.options.ecmaVersion >= 15 ? "v" : "");
174150
174166
  this.unicodeProperties = data[parser.options.ecmaVersion >= 14 ? 14 : parser.options.ecmaVersion];
@@ -174183,7 +174199,7 @@ Defaulting to 2020, but this will stop working in the future.`);
174183
174199
  RegExpValidationState.prototype.raise = function raise(message) {
174184
174200
  this.parser.raiseRecoverable(this.start, "Invalid regular expression: /" + this.source + "/: " + message);
174185
174201
  };
174186
- RegExpValidationState.prototype.at = function at2(i2, forceU) {
174202
+ RegExpValidationState.prototype.at = function at(i2, forceU) {
174187
174203
  if (forceU === undefined)
174188
174204
  forceU = false;
174189
174205
  var s = this.source;
@@ -174340,7 +174356,8 @@ Defaulting to 2020, but this will stop working in the future.`);
174340
174356
  }
174341
174357
  };
174342
174358
  pp$1.regexp_alternative = function(state) {
174343
- while (state.pos < state.source.length && this.regexp_eatTerm(state)) {}
174359
+ while (state.pos < state.source.length && this.regexp_eatTerm(state)) {
174360
+ }
174344
174361
  };
174345
174362
  pp$1.regexp_eatTerm = function(state) {
174346
174363
  if (this.regexp_eatAssertion(state)) {
@@ -175220,7 +175237,7 @@ Defaulting to 2020, but this will stop working in the future.`);
175220
175237
  }
175221
175238
  return true;
175222
175239
  };
175223
- var Token = function Token2(p) {
175240
+ var Token = function Token(p) {
175224
175241
  this.type = p.type;
175225
175242
  this.value = p.value;
175226
175243
  this.start = p.start;
@@ -175656,7 +175673,8 @@ Defaulting to 2020, but this will stop working in the future.`);
175656
175673
  var value2 = null;
175657
175674
  try {
175658
175675
  value2 = new RegExp(pattern, flags);
175659
- } catch (e) {}
175676
+ } catch (e) {
175677
+ }
175660
175678
  return this.finishToken(types$1.regexp, { pattern, flags, value: value2 });
175661
175679
  };
175662
175680
  pp.readInt = function(radix, len, maybeLegacyOctalNumericLiteral) {
@@ -176140,7 +176158,7 @@ var require_walk = __commonJS((exports2, module2) => {
176140
176158
  return test;
176141
176159
  }
176142
176160
  }
176143
- var Found = function Found2(node, state) {
176161
+ var Found = function Found(node, state) {
176144
176162
  this.node = node;
176145
176163
  this.state = state;
176146
176164
  };
@@ -176275,7 +176293,8 @@ var require_walk = __commonJS((exports2, module2) => {
176275
176293
  function skipThrough(node, st2, c) {
176276
176294
  c(node, st2);
176277
176295
  }
176278
- function ignore(_node, _st, _c) {}
176296
+ function ignore(_node, _st, _c) {
176297
+ }
176279
176298
  function visitNode(baseVisitor, type, node, st2, c) {
176280
176299
  if (baseVisitor[type] == null) {
176281
176300
  throw new Error("No walker function defined for node type " + type);
@@ -176786,7 +176805,8 @@ var require_base = __commonJS((exports2) => {
176786
176805
  value: true
176787
176806
  });
176788
176807
  exports2.default = Diff;
176789
- function Diff() {}
176808
+ function Diff() {
176809
+ }
176790
176810
  Diff.prototype = {
176791
176811
  diff: function diff(oldString, newString) {
176792
176812
  var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
@@ -177160,11 +177180,11 @@ var require_json = __commonJS((exports2) => {
177160
177180
  }
177161
177181
  function _typeof(obj) {
177162
177182
  if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
177163
- _typeof = function _typeof2(obj2) {
177183
+ _typeof = function _typeof(obj2) {
177164
177184
  return typeof obj2;
177165
177185
  };
177166
177186
  } else {
177167
- _typeof = function _typeof2(obj2) {
177187
+ _typeof = function _typeof(obj2) {
177168
177188
  return obj2 && typeof Symbol === "function" && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2;
177169
177189
  };
177170
177190
  }
@@ -177575,7 +177595,7 @@ var require_create = __commonJS((exports2) => {
177575
177595
  }
177576
177596
  var hunks = [];
177577
177597
  var oldRangeStart = 0, newRangeStart = 0, curRange = [], oldLine = 1, newLine = 1;
177578
- var _loop = function _loop2(i2) {
177598
+ var _loop = function _loop(i2) {
177579
177599
  var current = diff[i2], lines = current.lines || current.value.replace(/\n$/, "").split(`
177580
177600
  `);
177581
177601
  current.lines = lines;
@@ -178373,7 +178393,8 @@ ${getTopLevelAwaitHint()}`;
178373
178393
  _error.stack = (_b2 = _error.stack) === null || _b2 === undefined ? undefined : _b2.replace(/(SyntaxError:.*)/, (_2, $1) => `${$1}
178374
178394
 
178375
178395
  ${getTopLevelAwaitHint()}`);
178376
- } catch {}
178396
+ } catch {
178397
+ }
178377
178398
  }
178378
178399
  callback(_error);
178379
178400
  }
@@ -178475,7 +178496,8 @@ ${module_1.builtinModules.filter((name) => !name.startsWith("_") && !name.includ
178475
178496
  return composeWith.readFile(path);
178476
178497
  try {
178477
178498
  return (0, fs_1.readFileSync)(path, "utf8");
178478
- } catch (err) {}
178499
+ } catch (err) {
178500
+ }
178479
178501
  }
178480
178502
  function fileExists(path) {
178481
178503
  if (path === state.path)
@@ -178938,7 +178960,8 @@ var require_swc = __commonJS((exports2) => {
178938
178960
  jsc: { target: swcTargets[swcTargetIndex] }
178939
178961
  });
178940
178962
  break;
178941
- } catch (e) {}
178963
+ } catch (e) {
178964
+ }
178942
178965
  }
178943
178966
  swcTarget = swcTargets[swcTargetIndex];
178944
178967
  const keepClassNames = target >= 3;
@@ -180075,7 +180098,8 @@ var require_source_map_support = __commonJS((exports2, module2) => {
180075
180098
  if (!fs2.existsSync || !fs2.readFileSync) {
180076
180099
  fs2 = null;
180077
180100
  }
180078
- } catch (err) {}
180101
+ } catch (err) {
180102
+ }
180079
180103
  function dynamicRequire(mod, request) {
180080
180104
  return mod.require(request);
180081
180105
  }
@@ -180221,7 +180245,8 @@ var require_source_map_support = __commonJS((exports2, module2) => {
180221
180245
  } else if (fs2.existsSync(path2)) {
180222
180246
  contents = fs2.readFileSync(path2, "utf8");
180223
180247
  }
180224
- } catch (er) {}
180248
+ } catch (er) {
180249
+ }
180225
180250
  return setFileContentsCache(path2, contents);
180226
180251
  });
180227
180252
  function supportRelativeURL(file, url) {
@@ -180289,7 +180314,8 @@ var require_source_map_support = __commonJS((exports2, module2) => {
180289
180314
  if (sourceMapHeader) {
180290
180315
  return sourceMapHeader;
180291
180316
  }
180292
- } catch (e) {}
180317
+ } catch (e) {
180318
+ }
180293
180319
  }
180294
180320
  fileData = retrieveFile(tryFileURLToPath(source));
180295
180321
  var re2 = /(?:\/\/[@#][\s]*sourceMappingURL=([^\s'"]+)[\s]*$)|(?:\/\*[@#][\s]*sourceMappingURL=([^\s*'"]+)[\s]*(?:\*\/)[\s]*$)/mg;
@@ -180708,7 +180734,8 @@ var require_source_map_support = __commonJS((exports2, module2) => {
180708
180734
  if (worker_threads.isMainThread === false) {
180709
180735
  installHandler = false;
180710
180736
  }
180711
- } catch (e) {}
180737
+ } catch (e) {
180738
+ }
180712
180739
  if (installHandler && hasGlobalProcessEventEmitter()) {
180713
180740
  shimEmitUncaughtException();
180714
180741
  }
@@ -180819,7 +180846,8 @@ var require_node_internal_modules_esm_resolve = __commonJS((exports2, module2) =
180819
180846
  const { packageSubpath } = parsePackageName(afterNodeModulesPath);
180820
180847
  if (packageSubpath === ".")
180821
180848
  return;
180822
- } catch {}
180849
+ } catch {
180850
+ }
180823
180851
  }
180824
180852
  }
180825
180853
  if (emittedPackageWarnings.has(pjsonPath + "|" + match))
@@ -181056,7 +181084,8 @@ var require_node_internal_modules_esm_resolve = __commonJS((exports2, module2) =
181056
181084
  try {
181057
181085
  new URL2(target);
181058
181086
  isURL = true;
181059
- } catch {}
181087
+ } catch {
181088
+ }
181060
181089
  if (!isURL) {
181061
181090
  const exportTarget = pattern ? StringPrototypeReplace(target, patternRegEx, subpath) : target + subpath;
181062
181091
  return packageResolve(exportTarget, packageJSONUrl, conditions);
@@ -181380,7 +181409,8 @@ var require_node_internal_modules_esm_resolve = __commonJS((exports2, module2) =
181380
181409
  url: specifier
181381
181410
  };
181382
181411
  }
181383
- } catch {}
181412
+ } catch {
181413
+ }
181384
181414
  if (parsed && parsed.protocol === builtinModuleProtocol)
181385
181415
  return { url: specifier };
181386
181416
  if (parsed && parsed.protocol !== "file:" && parsed.protocol !== "data:")
@@ -181583,7 +181613,8 @@ var require_esm = __commonJS((exports2) => {
181583
181613
  try {
181584
181614
  if (specifier.startsWith("file://"))
181585
181615
  cjsSpecifier = (0, url_1.fileURLToPath)(specifier);
181586
- } catch {}
181616
+ } catch {
181617
+ }
181587
181618
  const resolution = (0, url_1.pathToFileURL)((0, module_1.createRequire)(process.cwd()).resolve(cjsSpecifier)).toString();
181588
181619
  rememberIsProbablyEntrypoint.add(resolution);
181589
181620
  rememberResolvedViaCommonjsFallback.add(resolution);
@@ -181734,7 +181765,8 @@ var require_dist = __commonJS((exports2) => {
181734
181765
  return repl_1.createRepl;
181735
181766
  } });
181736
181767
  var engineSupportsPackageTypeField = parseInt(process.versions.node.split(".")[0], 10) >= 12;
181737
- var assertScriptCanLoadAsCJS = engineSupportsPackageTypeField ? require_node_internal_modules_cjs_loader().assertScriptCanLoadAsCJSImpl : () => {};
181768
+ var assertScriptCanLoadAsCJS = engineSupportsPackageTypeField ? require_node_internal_modules_cjs_loader().assertScriptCanLoadAsCJSImpl : () => {
181769
+ };
181738
181770
  exports2.REGISTER_INSTANCE = Symbol.for("ts-node.register.instance");
181739
181771
  exports2.env = process.env;
181740
181772
  exports2.INSPECT_CUSTOM = util.inspect.custom || "inspect";
@@ -181923,7 +181955,8 @@ ${diagnosticText}`);
181923
181955
  if (experimentalEsmLoader && path.startsWith("file://")) {
181924
181956
  try {
181925
181957
  path = (0, url_1.fileURLToPath)(path);
181926
- } catch (e) {}
181958
+ } catch (e) {
181959
+ }
181927
181960
  }
181928
181961
  path = (0, util_1.normalizeSlashes)(path);
181929
181962
  return ((_a3 = outputCache.get(path)) === null || _a3 === undefined ? undefined : _a3.content) || "";
@@ -182987,7 +183020,8 @@ var require_typescript_json_schema = __commonJS((exports2) => {
182987
183020
  throw new Error("Not supported: root type undefined");
182988
183021
  }
182989
183022
  definition.type = "undefined";
182990
- } else if (flags & ts2.TypeFlags.Any || flags & ts2.TypeFlags.Unknown) {} else if (propertyTypeString === "Date" && !this.args.rejectDateType) {
183023
+ } else if (flags & ts2.TypeFlags.Any || flags & ts2.TypeFlags.Unknown) {
183024
+ } else if (propertyTypeString === "Date" && !this.args.rejectDateType) {
182991
183025
  definition.type = "string";
182992
183026
  definition.format = definition.format || "date-time";
182993
183027
  } else if (propertyTypeString === "object") {
@@ -184507,7 +184541,8 @@ var D = class {
184507
184541
  return true;
184508
184542
  return false;
184509
184543
  }
184510
- debug(...t) {}
184544
+ debug(...t) {
184545
+ }
184511
184546
  make() {
184512
184547
  let t = this.pattern, e = this.options;
184513
184548
  if (!e.nocomment && t.charAt(0) === "#") {
@@ -185030,9 +185065,12 @@ var ft = class Me {
185030
185065
  return !!a && !!h && (i || r()) - h > a;
185031
185066
  };
185032
185067
  }
185033
- #k = () => {};
185034
- #N = () => {};
185035
- #j = () => {};
185068
+ #k = () => {
185069
+ };
185070
+ #N = () => {
185071
+ };
185072
+ #j = () => {
185073
+ };
185036
185074
  #v = () => false;
185037
185075
  #G() {
185038
185076
  let t = new Tt(this.#t);
@@ -185059,8 +185097,10 @@ var ft = class Me {
185059
185097
  this.#u += t[e], i && (i.entrySize = s, i.totalCalculatedSize = this.#u);
185060
185098
  };
185061
185099
  }
185062
- #P = (t) => {};
185063
- #L = (t, e, s) => {};
185100
+ #P = (t) => {
185101
+ };
185102
+ #L = (t, e, s) => {
185103
+ };
185064
185104
  #I = (t, e, s, i) => {
185065
185105
  if (s || i)
185066
185106
  throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");
@@ -185453,7 +185493,8 @@ var Mt = class {
185453
185493
  unpipe() {
185454
185494
  this.dest.removeListener("drain", this.ondrain);
185455
185495
  }
185456
- proxyErrors(t) {}
185496
+ proxyErrors(t) {
185497
+ }
185457
185498
  end() {
185458
185499
  this.unpipe(), this.opts.end && this.dest.end();
185459
185500
  }
@@ -185528,7 +185569,8 @@ var V = class extends import_node_events.EventEmitter {
185528
185569
  get aborted() {
185529
185570
  return this[Dt];
185530
185571
  }
185531
- set aborted(t) {}
185572
+ set aborted(t) {
185573
+ }
185532
185574
  write(t, e, s) {
185533
185575
  if (this[Dt])
185534
185576
  return false;
@@ -185739,7 +185781,8 @@ var V = class extends import_node_events.EventEmitter {
185739
185781
  });
185740
185782
  }, throw: e, return: e, [Symbol.asyncIterator]() {
185741
185783
  return this;
185742
- }, [Symbol.asyncDispose]: async () => {} };
185784
+ }, [Symbol.asyncDispose]: async () => {
185785
+ } };
185743
185786
  }
185744
185787
  [Symbol.iterator]() {
185745
185788
  this[M] = false;
@@ -185751,7 +185794,8 @@ var V = class extends import_node_events.EventEmitter {
185751
185794
  };
185752
185795
  return this.once("end", e), this.once(Xt, e), this.once(x, e), { next: s, throw: e, return: e, [Symbol.iterator]() {
185753
185796
  return this;
185754
- }, [Symbol.dispose]: () => {} };
185797
+ }, [Symbol.dispose]: () => {
185798
+ } };
185755
185799
  }
185756
185800
  destroy(t) {
185757
185801
  if (this[x])
@@ -186204,7 +186248,8 @@ var R = class {
186204
186248
  if (this.#q)
186205
186249
  await this.#q;
186206
186250
  else {
186207
- let s = () => {};
186251
+ let s = () => {
186252
+ };
186208
186253
  this.#q = new Promise((i) => s = i);
186209
186254
  try {
186210
186255
  for (let i of await this.#t.promises.readdir(e, { withFileTypes: true }))
@@ -187219,7 +187264,7 @@ var Ze = Object.assign(Je, { glob: Je, globSync: ts, sync: Ui, globStream: Qe, s
187219
187264
  Ze.glob = Ze;
187220
187265
 
187221
187266
  // src/cli.ts
187222
- var TJS = __toESM(require_typescript_json_schema(), 1);
187267
+ var TJS = __toESM(require_typescript_json_schema());
187223
187268
  var __dirname = "/home/runner/work/pieui/pieui/src";
187224
187269
  var MANIFEST_FILENAME = "pieui.components.json";
187225
187270
  var REGISTER_FUNCTION = "registerPieComponent";