moparmeg 1.0.1 → 1.0.2

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
@@ -1,4 +1,47 @@
1
1
  #!/usr/bin/env node
2
+
3
+ // --- Bun bundler polyfills for missing default imports ---
4
+ var default120 = function isEqual(a, b) {
5
+ if (a === b) return true;
6
+ if (a == null || b == null) return a === b;
7
+ if (typeof a !== typeof b) return false;
8
+ if (typeof a !== 'object') return false;
9
+ var ka = Object.keys(a), kb = Object.keys(b);
10
+ if (ka.length !== kb.length) return false;
11
+ for (var i = 0; i < ka.length; i++) {
12
+ if (!Object.prototype.hasOwnProperty.call(b, ka[i]) || !default120(a[ka[i]], b[ka[i]])) return false;
13
+ }
14
+ return true;
15
+ };
16
+ var default169 = function memoize(fn) {
17
+ var called = false, result;
18
+ return function() {
19
+ if (!called) { called = true; result = fn.apply(this, arguments); }
20
+ return result;
21
+ };
22
+ };
23
+ var default326 = async function pMap(iterable, mapper, opts) {
24
+ opts = opts || {};
25
+ var concurrency = opts.concurrency || opts.maxBuffer || Infinity;
26
+ var results = [], items = Array.from(iterable), i = 0, running = 0;
27
+ return new Promise(function(resolve, reject) {
28
+ function next() {
29
+ while (running < concurrency && i < items.length) {
30
+ var idx = i++;
31
+ running++;
32
+ Promise.resolve(mapper(items[idx], idx)).then(function(val) {
33
+ results[idx] = val;
34
+ running--;
35
+ if (i >= items.length && running === 0) resolve(results);
36
+ else next();
37
+ }, reject);
38
+ }
39
+ if (items.length === 0) resolve(results);
40
+ }
41
+ next();
42
+ });
43
+ };
44
+ // --- End polyfills ---
2
45
  import { createRequire } from "node:module";
3
46
  var __create = Object.create;
4
47
  var __getProtoOf = Object.getPrototypeOf;
@@ -180459,7 +180502,7 @@ var init_metadata = __esm(() => {
180459
180502
  isClaudeAiAuth: isClaudeAISubscriber(),
180460
180503
  version: "1.0.0",
180461
180504
  versionBase: getVersionBase(),
180462
- buildTime: "2026-04-04T05:26:42.650Z",
180505
+ buildTime: "2026-04-04T06:24:41.443Z",
180463
180506
  deploymentEnvironment: env4.detectDeploymentEnvironment(),
180464
180507
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
180465
180508
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -413418,7 +413461,7 @@ function getAnthropicEnvMetadata() {
413418
413461
  function getBuildAgeMinutes() {
413419
413462
  if (false)
413420
413463
  ;
413421
- const buildTime = new Date("2026-04-04T05:26:42.650Z").getTime();
413464
+ const buildTime = new Date("2026-04-04T06:24:41.443Z").getTime();
413422
413465
  if (isNaN(buildTime))
413423
413466
  return;
413424
413467
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -506854,7 +506897,7 @@ var init_bridge_kick = __esm(() => {
506854
506897
  var call56 = async () => {
506855
506898
  return {
506856
506899
  type: "text",
506857
- value: `${"1.0.0"} (built ${"2026-04-04T05:26:42.650Z"})`
506900
+ value: `${"1.0.0"} (built ${"2026-04-04T06:24:41.443Z"})`
506858
506901
  };
506859
506902
  }, version5, version_default;
506860
506903
  var init_version = __esm(() => {
@@ -601235,6 +601278,6 @@ async function main2() {
601235
601278
  }
601236
601279
  main2();
601237
601280
 
601238
- //# debugId=E67893CC9EC520EB64756E2164756E21
601281
+ //# debugId=D180C2AF259FC3A964756E2164756E21
601239
601282
 
601240
601283
  //# sourceMappingURL=cli.js.map