Coder Social home page Coder Social logo

Comments (18)

j4k0xb avatar j4k0xb commented on July 24, 2024 3

The module.exports = x assignment will overwrite the default export, which means the first line will be dropped. This is either something wrong or wakaru wrong. So a warning was printed to hint to users.

module 19841 has to be converted to one of these:

function eo() { }
export { eo as clsx };
export default eo;
// or
function clsx() { }
export { clsx };
export default clsx;
// or (preferred one)
export function clsx() { }
export default clsx;

there's no commonjs/mixed export so no module.exports = either, which should get rid of the issue

example for comparison (webpack 4):

export function f() {}
export default f;
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return f; });
function f() { }
/* harmony default export */ __webpack_exports__["default"] = (f);

I recently bundled all possible import/export/esm/commonjs combinations and we both need to fix quite a bit to do it "properly" 😅

from wakaru.

j4k0xb avatar j4k0xb commented on July 24, 2024 3

yes, currently looks like this (webpack 5 doesn't have that many tests because the logic is mostly the same)
feel free to expand if you find any more

exports

describe('webpack 4', () => {
  test('export named', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "counter", function() { return foo; });
      var foo = 1;
    `).toMatchInlineSnapshot(`export var counter = 1;`));

  test('export default expression;', () =>
    expectJS(`
      __webpack_exports__.default = 1;
    `).toMatchInlineSnapshot(`export default 1;`));

  // TODO: create separate transform for extracting unrelated variables from for loop?
  test.todo('export inlined variable', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "counter", function() { return foo; });
      for (var foo = 1, i = 0; i < 10; i++) {}
    `).toMatchInlineSnapshot(`
      export var foo = 1;
      for (var i = 0; i < 10; i++) {}
    `));

  test('export default variable', () =>
    expectJS(`
    var foo = 1;
    __webpack_exports__.default = foo;
    `).toMatchInlineSnapshot(`export default 1;`));

  test('export default variable with multiple references', () =>
    expectJS(`
      var foo = 1;
      __webpack_exports__.default = foo;
      console.log(foo);
    `).toMatchInlineSnapshot(`
      var foo = 1;
      export default foo;
      console.log(foo);
    `));

  test('export default function', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "default", function() { return foo; });
      function foo() {}
    `).toMatchInlineSnapshot(`export default function foo() {}`));

  test('export default class', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "default", function() { return foo; });
      class foo {}
    `).toMatchInlineSnapshot(`export default class foo {}`));

  test('re-export named', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "readFile", function() { return lib.readFile; });
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`
      export { readFile } from "lib";
    `));

  test('re-export named with multiple references', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "readFile", function() { return lib.readFile; });
      var lib = __webpack_require__("lib");
      console.log(lib);
    `).toMatchInlineSnapshot(`
      import * as lib from "lib";
      export { readFile } from "lib";
      console.log(lib);
    `));

  test('re-export named as named', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "foo", function() { return lib.readFile; });
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`
      export { readFile as foo } from "lib";
    `));

  test('re-export named as default', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "default", function() { return lib.readFile; });
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`
      export { readFile as default } from "lib";
    `));

  test('re-export default as named', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "foo", function() { return lib.default; });
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`
      export { default as foo } from "lib";
    `));

  test('re-export default as default', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "default", function() { return lib.default; });
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`
      export { default } from "lib";
    `));

  // webpack just declares all the exports individually, hard to detect this case
  test.todo('re-export all'); // export * from 'lib';

  test.todo('re-export all from commonjs', () =>
    expectJS(`
      var lib = __webpack_require__("lib");
      var libDef = __webpack_require__.n(lib);
      for (var importKey in lib) {
        if (["default"].indexOf(importKey) < 0) {
          (function (key) {
            __webpack_require__.d(__webpack_exports__, key, function () {
              return lib[key];
            });
          })(importKey);
        }
      }
    `).toMatchInlineSnapshot(`
      export * from "./lib";
    `),
  );

  test('re-export all as named', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "lib", function() { return lib; });
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`
      export * as lib from "lib";
    `));

  test.todo('re-export all as default', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, "default", function() { return lib; });
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`export * as default from "lib";`),
  );

// https://webpack.js.org/plugins/module-concatenation-plugin/, https://github.com/webpack/webpack/blob/dfffd6a241bf1d593b3fd31b4b279f96f4a4aab1/lib/optimize/ConcatenatedModule.js#L58
// almost impossible to separate concatenated modules, so ignore it instead
  test('namespace object', () =>
    expectJS(`
        var lib_namespaceObject = {};
        __webpack_require__.d(lib_namespaceObject, "foo", function() { return foo; });
        function foo() {}
      `).toMatchInlineSnapshot(`
        var lib_namespaceObject = {};
        //webcrack:concatenated-module-export
        Object.defineProperty(lib_namespaceObject, "foo", {
          enumerable: true,
          get: () => foo
        });
        function foo() {}
      `));
});

describe('webpack 5', () => {
  test('export named', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, {
        counter: () => foo
      });
      var foo = 1;
    `).toMatchInlineSnapshot(`
      export var counter = 1;
    `));

  test('export same variable with multiple names', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, {
        counter: () => foo,
        increment: () => foo,
      });
      var foo = 1;
    `).toMatchInlineSnapshot(`
      export var counter = 1;
      export { counter as increment };
    `));

  test.todo('export object destructuring', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, {
        bar: () => bar,
        name1: () => name1
      });
      const o = {
        name1: "foo",
        name2: "bar"
      };
      const {
        name1,
        name2: bar
      } = o;
    `).toMatchInlineSnapshot(`
      const o = {
        name1: "foo",
        name2: "bar"
      };
      export const {
        name1,
        name2: bar
      } = o;
    `),
  );

  test.todo('export array destructuring', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, {
        bar: () => bar,
        name1: () => name1
      });
      const o = ["foo", "bar"];
      const [name1, bar] = o;
    `).toMatchInlineSnapshot(`
      const o = ["foo", "bar"];
      export const [name1, bar] = o;
    `),
  );

  test('re-export named merging', () =>
    expectJS(`
      __webpack_require__.d(__webpack_exports__, {
        readFile: () => lib.readFile,
        writeFile: () => lib.writeFile,
      });
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`
      export { readFile, writeFile } from "lib";
    `));

  test.todo('re-export all from commonjs', () =>
    expectJS(`
      var lib = __webpack_require__("lib");
      var libDef = __webpack_require__.n(lib);
      var reExportObject = {};
      for (const importKey in lib) {
        if (importKey !== "default") {
          reExportObject[importKey] = () => lib[importKey];
        }
      }
      __webpack_require__.d(__webpack_exports__, reExportObject);
    `).toMatchInlineSnapshot(`
      export * from "./lib";
    `),
  );

  test('namespace object', () =>
    expectJS(`
      var lib_namespaceObject = {};
      __webpack_require__.d(lib_namespaceObject, {
        foo: () => foo,
        bar: () => bar,
      });
      function foo() {}
      function bar() {}
    `).toMatchInlineSnapshot(`
        var lib_namespaceObject = {};
        //webcrack:concatenated-module-export
        Object.defineProperty(lib_namespaceObject, "bar", {
          enumerable: true,
          get: () => bar
        });
        //webcrack:concatenated-module-export
        Object.defineProperty(lib_namespaceObject, "foo", {
          enumerable: true,
          get: () => foo
        });
        function foo() {}
        function bar() {}
      `));
});

imports

describe('webpack 4', () => {
  test('default import', () =>
    expectJS(`
      __webpack_require__.r(__webpack_exports__);
      const lib = __webpack_require__("lib");
      console.log(lib.default);
    `).toMatchInlineSnapshot(`
      import lib from "lib";
      console.log(lib);
    `));

  test('default import of commonjs module', () =>
    expectJS(`
      var lib = __webpack_require__(1);
      var _tmp = __webpack_require__.n(lib);
      console.log(_tmp.a);
      console.log(_tmp());
    `).toMatchInlineSnapshot(`
      import _default from "1";
      console.log(_default);
      console.log(_default);
    `));

  test('inlined default import of commonjs module', () =>
    expectJS(`
      var lib = __webpack_require__(1);
      console.log(__webpack_require__.n(lib).a);
    `).toMatchInlineSnapshot(`
      import _default from "1";
      console.log(_default);
    `));

  test('named import', () =>
    expectJS(`
      __webpack_require__.r(__webpack_exports__);
      const lib = __webpack_require__("lib");
      console.log(lib.foo);
    `).toMatchInlineSnapshot(`
      import { foo } from "lib";
      console.log(foo);
    `));

  test('named import with indirect call', () =>
    expectJS(`
      __webpack_require__.r(__webpack_exports__);
      const lib = __webpack_require__("lib");
      console.log(Object(lib.foo)("bar"));
    `).toMatchInlineSnapshot(`
      import { foo } from "lib";
      console.log(foo("bar"));
    `));

  test('namespace import', () =>
    expectJS(`
      __webpack_require__.r(__webpack_exports__);
      const lib = __webpack_require__("lib");
      console.log(lib);
    `).toMatchInlineSnapshot(`
      import * as lib from "lib";
      console.log(lib);
    `));

  test('side effect import', () =>
    expectJS(`
      __webpack_require__.r(__webpack_exports__);
      var lib = __webpack_require__("lib");
    `).toMatchInlineSnapshot(`
      import "lib";
    `));

  test.todo('dynamic import', () =>
    expectJS(`
      __webpack_require__.e("chunkId").then(__webpack_require__.bind(null, "lib")).then((lib) => {
        console.log(lib);
      });
    `).toMatchInlineSnapshot(`
      import("lib").then((lib) => {
        console.log(lib);
      });
    `),
  );
});

describe('webpack 5', () => {
  test('named import with indirect call', () =>
    expectJS(`
      __webpack_require__.r(__webpack_exports__);
      const lib = __webpack_require__("lib");
      console.log((0, lib.foo)("bar"));
    `).toMatchInlineSnapshot(`
      import { foo } from "lib";
      console.log(foo("bar"));
    `));

  test.todo('namespace import of commonjs module', () =>
    expectJS(`
      var _cache;
      __webpack_require__.r(__webpack_exports__);
      const lib = __webpack_require__("lib");
      console.log(_cache ||= __webpack_require__.t(lib, 2));
    `).toMatchInlineSnapshot(`
      import * as lib from "lib";
      console.log(lib);
    `),
  );

  test.todo('dynamic import', () =>
    expectJS(`
      __webpack_require__.e("chunkId").then(__webpack_require__.bind(__webpack_require__, "lib")).then((lib) => {
        console.log(lib);
      });
    `).toMatchInlineSnapshot(`
      import("lib").then((lib) => {
        console.log(lib);
      });
    `),
  );
});

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 2

SyntaxError: Identifier 'f' has already been declared.

@0xdevalias This is related to lebab. I'm still working on creating a minimal reproduction. But no more repeated parsing error in CLI 0.0.6.

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 2

lebab/lebab#353

But I might want to re-implement these rules in the long run...

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

It would be useful if this message mentioned what module was being processed at the time

We will need a logger injected by the context which will automatically print the file and rule name.

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

Error running rule un-parameters-lebab on module-33562.js SyntaxError: Identifier 'Z' has already been declared

This is caused by the new rule runner. Some scopes are not naturally reset between rules because of the sharing AST.
Fixed. This is not easy to cover with normal unit tests. Maybe we can only count on the time and samples.

Error running rule un-parameters-lebab on module-65100.js SyntaxError: Unexpected token $

This is an unhandled case in which backticks and other special characters need to be escaped. Fixed.

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

Error: did not recognize object of type "PropertyDefinition"

This one looks similar to #51, lebab failed to parse the code.

I'm 100% sure about the root cause. It's quite interesting. If you change the 3e5 to 35, then wakaru won't generate a /* 3e5 */ comment, then everything works fine 😅

updateGcTime(Y) { 
      this.gcTime = Math.max(
        this.gcTime || 0,
        Y ?? (ei.sk ? 1 / 0 : 3e5) /* 3e5 */
                                     ^^^^ This breaks lebab's parser
      );
    }

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

Multiple exports of "default" found, only the last one will be kept

I have updated the log to print out the filename.

[module-19841.js] Multiple exports of "default" found, only the last one will be kept

exports.default = eo;

module.exports = {
    clsx: eo
};

The module.exports = x assignment will overwrite the default export, which means the first line will be dropped. This is either something wrong or wakaru wrong. So a warning was printed to hint to users.

BUG: because of the AST scanning order, we actually chose the first one... will fix it

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

Oh, hm, should early return the result when there is a parsing error.

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

lol damm. Thanks. I was so confused about this.

Did you make a test suite or something that we can use as a reference?

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

Thanks for the detailed test cases 🙏 Especially for those re-export cases, I haven't seen them before.

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

Error: did not recognize object of type "PropertyDefinition"

It's caused by the combination of the private field and the numeric comment. I will have to spend some time digging into ast-types 😞 and patch it by myself.

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

All errors are fixed. I will move @j4k0xb 's CJS/ESM part to a new issue.

from wakaru.

pionxzh avatar pionxzh commented on July 24, 2024 1

All released in CLI 0.0.7

from wakaru.

0xdevalias avatar 0xdevalias commented on July 24, 2024

The full command output including stack traces is available here:

Full Output
⇒ npm run-script wakaru:unminify-chunk pages/_app

> [email protected] wakaru:unminify-chunk
> f() { CHUNK="$1"; npx @wakaru/cli all unpacked/_next/static/chunks/${CHUNK}.js --unpacker-output stage2-unpacked/${CHUNK} --unminify-output stage3-unminified/${CHUNK} --perf; }; f pages/_app


┌   Wakaru CLI v0.0.5
│
└  Selected features: Unpacker, Unminify

┌   Unpacker
│
◇  Unpacking unpacked/_next/static/chunks/pages/_app.js
│
◇  Finished
│
◆  Successfully generated 1224 modules (3m2s)
│
└  Output directory: ./stage2-unpacked/pages/_app

┌   Unminify
│
◇  Unminifying... (concurrency: 1)
│
◒  ..Multiple exports of "default" found, only the last one will be kept
◐
Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-85695.js SyntaxError: Unexpected token yyyy
    at Espree.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6874:23)
    at Espree.unexpected (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6911:16)
    at pp$9.expect (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:668:32)
    at pp$5.parseExprList (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:3003:18)
    at pp$5.parseSubscript (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:2425:31)
    at pp$5.parseSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:2376:30)
    at pp$5.parseExprSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:2358:27)
    at pp$5.parseMaybeUnary (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:2325:23)
    at pp$5.parseExprOps (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:2256:25)
    at pp$5.parseMaybeConditional (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:2240:25) {
  index: 118498,
  lineNumber: 4948,
  column: 13
}

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-85695.js with jscodeshift in rule un-jsx SyntaxError: Unexpected token, expected "," (4948:12)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at JSXParserMixin.unexpected (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20947:20)
    at JSXParserMixin.expect (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:21284:32)
    at JSXParserMixin.parseCallExpressionArguments (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28829:18)
    at JSXParserMixin.parseCoverCallAndAsyncArrowHead (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28753:33)
    at JSXParserMixin.parseSubscript (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28688:23)
    at JSXParserMixin.parseSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28659:23)
    at JSXParserMixin.parseExprSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28650:21)
    at JSXParserMixin.parseUpdate (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28628:25) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'UnexpectedToken',
  loc: Position { line: 4948, column: 12, index: 118498 },
  pos: 118498
}
 4946 |   if (Y === "YYYY") {
 4947 |     throw RangeError(
 4948 |       `Use `yyyy` instead of `YYYY` (in `${et}`) for formatting years to the input `${en}`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`
                   ^
 4949 |     );
 4950 |   }

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-85695.js with jscodeshift in rule un-iife SyntaxError: Unexpected token, expected "," (4948:12)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at JSXParserMixin.unexpected (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20947:20)
    at JSXParserMixin.expect (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:21284:32)
    at JSXParserMixin.parseCallExpressionArguments (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28829:18)
    at JSXParserMixin.parseCoverCallAndAsyncArrowHead (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28753:33)
    at JSXParserMixin.parseSubscript (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28688:23)
    at JSXParserMixin.parseSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28659:23)
    at JSXParserMixin.parseExprSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28650:21)
    at JSXParserMixin.parseUpdate (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28628:25) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'UnexpectedToken',
  loc: Position { line: 4948, column: 12, index: 118498 },
  pos: 118498
}
 4946 |   if (Y === "YYYY") {
 4947 |     throw RangeError(
 4948 |       `Use `yyyy` instead of `YYYY` (in `${et}`) for formatting years to the input `${en}`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`
                   ^
 4949 |     );
 4950 |   }

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-85695.js with jscodeshift in rule un-es6-class SyntaxError: Unexpected token, expected "," (4948:12)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at JSXParserMixin.unexpected (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20947:20)
    at JSXParserMixin.expect (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:21284:32)
    at JSXParserMixin.parseCallExpressionArguments (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28829:18)
    at JSXParserMixin.parseCoverCallAndAsyncArrowHead (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28753:33)
    at JSXParserMixin.parseSubscript (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28688:23)
    at JSXParserMixin.parseSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28659:23)
    at JSXParserMixin.parseExprSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28650:21)
    at JSXParserMixin.parseUpdate (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28628:25) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'UnexpectedToken',
  loc: Position { line: 4948, column: 12, index: 118498 },
  pos: 118498
}
 4946 |   if (Y === "YYYY") {
 4947 |     throw RangeError(
 4948 |       `Use `yyyy` instead of `YYYY` (in `${et}`) for formatting years to the input `${en}`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`
                   ^
 4949 |     );
 4950 |   }

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-85695.js with jscodeshift in rule un-async-await SyntaxError: Unexpected token, expected "," (4948:12)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at JSXParserMixin.unexpected (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20947:20)
    at JSXParserMixin.expect (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:21284:32)
    at JSXParserMixin.parseCallExpressionArguments (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28829:18)
    at JSXParserMixin.parseCoverCallAndAsyncArrowHead (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28753:33)
    at JSXParserMixin.parseSubscript (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28688:23)
    at JSXParserMixin.parseSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28659:23)
    at JSXParserMixin.parseExprSubscripts (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28650:21)
    at JSXParserMixin.parseUpdate (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:28628:25) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'UnexpectedToken',
  loc: Position { line: 4948, column: 12, index: 118498 },
  pos: 118498
}
 4946 |   if (Y === "YYYY") {
 4947 |     throw RangeError(
 4948 |       `Use `yyyy` instead of `YYYY` (in `${et}`) for formatting years to the input `${en}`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`
                   ^
 4949 |     );
 4950 |   }

Error running rule prettier on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-85695.js SyntaxError: Unexpected token, expected "," (4948:13)
  4946 |   if (Y === "YYYY") {
  4947 |     throw RangeError(
> 4948 |       `Use `yyyy` instead of `YYYY` (in `${et}`) for formatting years to the input `${en}`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`
       |             ^
  4949 |     );
  4950 |   }
  4951 |   if (Y === "YY") {
    at p (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:23482:21)
    at d (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:23492:20)
    at Object.parse (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:30779:21)
    at Object.h [as parse] (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:34107:82)
    at N (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:34657:41)
    at T (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:34722:192)
    at /Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:42393:134
    at Object.format (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:42398:18)
    at _StringTransformationRule.transform (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:42696:38)
    at _StringTransformationRule.execute (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:42546:19) {
  loc: { start: { line: 4948, column: 13 } },
  codeFrame: '  4946 |   if (Y === "YYYY") {\n' +
    '  4947 |     throw RangeError(\n' +
    '> 4948 |       `Use `yyyy` instead of `YYYY` (in `${et}`) for formatting years to the input `${en}`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`\n' +
    '       |             ^\n' +
    '  4949 |     );\n' +
    '  4950 |   }\n' +
    '  4951 |   if (Y === "YY") {'
}

Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-73797.js SyntaxError: Identifier 'Z' has already been declared
    at Espree.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6874:23)
    at Espree.raiseRecoverable (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6888:16)
    at pp$3.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:3193:16)
    at pp$7.checkLValSimple (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1908:22)
    at pp$7.checkLValPattern (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1948:18)
    at pp$8.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1216:14)
    at pp$8.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1197:16)
    at pp$8.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1087:14)
    at pp$8.parseStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:822:25)
    at pp$8.parseExportDeclaration (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1544:21) {
  index: 2258,
  lineNumber: 104,
  column: 14
}

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-73797.js with jscodeshift in rule un-jsx SyntaxError: Identifier 'Z' has already been declared. (104:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 104, column: 13, index: 2258 },
  pos: 2258
}
  102 | }
  103 |
  104 | export const Z = {
                    ^
  105 |   Root: ea.fC,
  106 |   Trigger: ew,

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-73797.js with jscodeshift in rule un-iife SyntaxError: Identifier 'Z' has already been declared. (104:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 104, column: 13, index: 2258 },
  pos: 2258
}
  102 | }
  103 |
  104 | export const Z = {
                    ^
  105 |   Root: ea.fC,
  106 |   Trigger: ew,

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-73797.js with jscodeshift in rule un-es6-class SyntaxError: Identifier 'Z' has already been declared. (104:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 104, column: 13, index: 2258 },
  pos: 2258
}
  102 | }
  103 |
  104 | export const Z = {
                    ^
  105 |   Root: ea.fC,
  106 |   Trigger: ew,

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-73797.js with jscodeshift in rule un-async-await SyntaxError: Identifier 'Z' has already been declared. (104:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 104, column: 13, index: 2258 },
  pos: 2258
}
  102 | }
  103 |
  104 | export const Z = {
                    ^
  105 |   Root: ea.fC,
  106 |   Trigger: ew,

Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-33562.js SyntaxError: Identifier 'Z' has already been declared
    at Espree.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6874:23)
    at Espree.raiseRecoverable (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6888:16)
    at pp$3.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:3193:16)
    at pp$7.checkLValSimple (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1908:22)
    at pp$7.checkLValPattern (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1948:18)
    at pp$8.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1216:14)
    at pp$8.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1197:16)
    at pp$8.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1087:14)
    at pp$8.parseStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:822:25)
    at pp$8.parseExportDeclaration (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1544:21) {
  index: 2295,
  lineNumber: 91,
  column: 14
}

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-33562.js with jscodeshift in rule un-jsx SyntaxError: Identifier 'Z' has already been declared. (91:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 91, column: 13, index: 2295 },
  pos: 2295
}
   89 | }
   90 |
   91 | export const Z = {
                    ^
   92 |   Root: ea.fC,
   93 |   Trigger: eb,

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-33562.js with jscodeshift in rule un-iife SyntaxError: Identifier 'Z' has already been declared. (91:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 91, column: 13, index: 2295 },
  pos: 2295
}
   89 | }
   90 |
   91 | export const Z = {
                    ^
   92 |   Root: ea.fC,
   93 |   Trigger: eb,

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-33562.js with jscodeshift in rule un-es6-class SyntaxError: Identifier 'Z' has already been declared. (91:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 91, column: 13, index: 2295 },
  pos: 2295
}
   89 | }
   90 |
   91 | export const Z = {
                    ^
   92 |   Root: ea.fC,
   93 |   Trigger: eb,

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-33562.js with jscodeshift in rule un-async-await SyntaxError: Identifier 'Z' has already been declared. (91:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 91, column: 13, index: 2295 },
  pos: 2295
}
   89 | }
   90 |
   91 | export const Z = {
                    ^
   92 |   Root: ea.fC,
   93 |   Trigger: eb,

Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-34408.js SyntaxError: Identifier 'Z' has already been declared
    at Espree.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6874:23)
    at Espree.raiseRecoverable (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6888:16)
    at pp$3.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:3193:16)
    at pp$7.checkLValSimple (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1908:22)
    at pp$7.checkLValPattern (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1948:18)
    at pp$8.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1216:14)
    at pp$8.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1197:16)
    at pp$8.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1087:14)
    at pp$8.parseStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:822:25)
    at pp$8.parseExportDeclaration (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1544:21) {
  index: 1058,
  lineNumber: 46,
  column: 14
}

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-34408.js with jscodeshift in rule un-jsx SyntaxError: Identifier 'Z' has already been declared. (46:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 46, column: 13, index: 1058 },
  pos: 1058
}
   44 | }
   45 |
   46 | export const Z = {
                    ^
   47 |   Root(Y) {
   48 |     const {

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-34408.js with jscodeshift in rule un-iife SyntaxError: Identifier 'Z' has already been declared. (46:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 46, column: 13, index: 1058 },
  pos: 1058
}
   44 | }
   45 |
   46 | export const Z = {
                    ^
   47 |   Root(Y) {
   48 |     const {

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-34408.js with jscodeshift in rule un-es6-class SyntaxError: Identifier 'Z' has already been declared. (46:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 46, column: 13, index: 1058 },
  pos: 1058
}
   44 | }
   45 |
   46 | export const Z = {
                    ^
   47 |   Root(Y) {
   48 |     const {

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-34408.js with jscodeshift in rule un-async-await SyntaxError: Identifier 'Z' has already been declared. (46:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 46, column: 13, index: 1058 },
  pos: 1058
}
   44 | }
   45 |
   46 | export const Z = {
                    ^
   47 |   Root(Y) {
   48 |     const {

Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-65100.js SyntaxError: Unexpected token $
    at Espree.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6874:23)
    at Espree.unexpected (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6911:16)
    at pp$9.semicolon (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:653:16)
    at pp$8.parseReturnStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:995:16)
    at pp$8.parseStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:809:25)
    at pp$8.parseBlock (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1151:27)
    at pp$5.parseFunctionBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:2976:28)
    at pp$8.parseFunction (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1245:14)
    at pp$8.parseFunctionStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:977:21)
    at pp$8.parseStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:800:25) {
  index: 7576,
  lineNumber: 310,
  column: 16
}

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-65100.js with jscodeshift in rule un-jsx SyntaxError: Missing semicolon. (310:15)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at JSXParserMixin.semicolon (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:21279:14)
    at JSXParserMixin.parseReturnStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30789:16)
    at JSXParserMixin.parseStatementContent (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30407:25)
    at JSXParserMixin.parseStatementLike (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30372:21)
    at JSXParserMixin.parseStatementListItem (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30352:21)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30976:65)
    at JSXParserMixin.parseBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30969:14)
    at JSXParserMixin.parseBlock (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30957:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'MissingSemicolon',
  loc: Position { line: 310, column: 15, index: 7576 },
  pos: 7576
}
  308 | function eZ(Y) {
  309 |   function et(Y, et) {
  310 |     return ````${et}
                      ^
  311 | ${Y}
  312 | ````;

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-65100.js with jscodeshift in rule un-iife SyntaxError: Missing semicolon. (310:15)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at JSXParserMixin.semicolon (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:21279:14)
    at JSXParserMixin.parseReturnStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30789:16)
    at JSXParserMixin.parseStatementContent (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30407:25)
    at JSXParserMixin.parseStatementLike (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30372:21)
    at JSXParserMixin.parseStatementListItem (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30352:21)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30976:65)
    at JSXParserMixin.parseBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30969:14)
    at JSXParserMixin.parseBlock (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30957:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'MissingSemicolon',
  loc: Position { line: 310, column: 15, index: 7576 },
  pos: 7576
}
  308 | function eZ(Y) {
  309 |   function et(Y, et) {
  310 |     return ````${et}
                      ^
  311 | ${Y}
  312 | ````;

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-65100.js with jscodeshift in rule un-es6-class SyntaxError: Missing semicolon. (310:15)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at JSXParserMixin.semicolon (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:21279:14)
    at JSXParserMixin.parseReturnStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30789:16)
    at JSXParserMixin.parseStatementContent (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30407:25)
    at JSXParserMixin.parseStatementLike (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30372:21)
    at JSXParserMixin.parseStatementListItem (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30352:21)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30976:65)
    at JSXParserMixin.parseBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30969:14)
    at JSXParserMixin.parseBlock (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30957:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'MissingSemicolon',
  loc: Position { line: 310, column: 15, index: 7576 },
  pos: 7576
}
  308 | function eZ(Y) {
  309 |   function et(Y, et) {
  310 |     return ````${et}
                      ^
  311 | ${Y}
  312 | ````;

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-65100.js with jscodeshift in rule un-async-await SyntaxError: Missing semicolon. (310:15)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at JSXParserMixin.semicolon (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:21279:14)
    at JSXParserMixin.parseReturnStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30789:16)
    at JSXParserMixin.parseStatementContent (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30407:25)
    at JSXParserMixin.parseStatementLike (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30372:21)
    at JSXParserMixin.parseStatementListItem (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30352:21)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30976:65)
    at JSXParserMixin.parseBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30969:14)
    at JSXParserMixin.parseBlock (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30957:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'MissingSemicolon',
  loc: Position { line: 310, column: 15, index: 7576 },
  pos: 7576
}
  308 | function eZ(Y) {
  309 |   function et(Y, et) {
  310 |     return ````${et}
                      ^
  311 | ${Y}
  312 | ````;

Error running rule prettier on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-65100.js SyntaxError: Missing semicolon. (310:16)
  308 | function eZ(Y) {
  309 |   function et(Y, et) {
> 310 |     return ````${et}
      |                ^
  311 | ${Y}
  312 | ````;
  313 |   }
    at p (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:23482:21)
    at d (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:23492:20)
    at Object.parse (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:30779:21)
    at Object.h [as parse] (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:34107:82)
    at N (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:34657:41)
    at T (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:34722:192)
    at /Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:42393:134
    at Object.format (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:42398:18)
    at _StringTransformationRule.transform (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:42696:38)
    at _StringTransformationRule.execute (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:42546:19) {
  loc: { start: { line: 310, column: 16 } },
  codeFrame: '  308 | function eZ(Y) {\n' +
    '  309 |   function et(Y, et) {\n' +
    '> 310 |     return ````${et}\n' +
    '      |                ^\n' +
    '  311 | ${Y}\n' +
    '  312 | ````;\n' +
    '  313 |   }'
}

Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-80894.js SyntaxError: Identifier 'Z' has already been declared
    at Espree.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6874:23)
    at Espree.raiseRecoverable (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6888:16)
    at pp$3.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:3193:16)
    at pp$7.checkLValSimple (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1908:22)
    at pp$7.checkLValPattern (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1948:18)
    at pp$8.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1216:14)
    at pp$8.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1197:16)
    at pp$8.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1087:14)
    at pp$8.parseStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:822:25)
    at pp$8.parseExportDeclaration (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1544:21) {
  index: 2129,
  lineNumber: 103,
  column: 14
}

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-80894.js with jscodeshift in rule un-jsx SyntaxError: Identifier 'Z' has already been declared. (103:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 103, column: 13, index: 2129 },
  pos: 2129
}
  101 | }
  102 |
  103 | export const Z = {
                    ^
  104 |   info() {
  105 |     const et = Array(Y);

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-80894.js with jscodeshift in rule un-iife SyntaxError: Identifier 'Z' has already been declared. (103:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 103, column: 13, index: 2129 },
  pos: 2129
}
  101 | }
  102 |
  103 | export const Z = {
                    ^
  104 |   info() {
  105 |     const et = Array(Y);

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-80894.js with jscodeshift in rule un-es6-class SyntaxError: Identifier 'Z' has already been declared. (103:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 103, column: 13, index: 2129 },
  pos: 2129
}
  101 | }
  102 |
  103 | export const Z = {
                    ^
  104 |   info() {
  105 |     const et = Array(Y);

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-80894.js with jscodeshift in rule un-async-await SyntaxError: Identifier 'Z' has already been declared. (103:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 103, column: 13, index: 2129 },
  pos: 2129
}
  101 | }
  102 |
  103 | export const Z = {
                    ^
  104 |   info() {
  105 |     const et = Array(Y);
Multiple exports of "default" found, only the last one will be kept

Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-32004.js SyntaxError: Identifier 'Z' has already been declared
    at Espree.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6874:23)
    at Espree.raiseRecoverable (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6888:16)
    at pp$3.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:3193:16)
    at pp$7.checkLValSimple (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1908:22)
    at pp$7.checkLValPattern (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1948:18)
    at pp$8.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1216:14)
    at pp$8.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1197:16)
    at pp$8.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1087:14)
    at pp$8.parseStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:822:25)
    at pp$8.parseExportDeclaration (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1544:21) {
  index: 1103,
  lineNumber: 50,
  column: 14
}

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-32004.js with jscodeshift in rule un-jsx SyntaxError: Identifier 'Z' has already been declared. (50:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 50, column: 13, index: 1103 },
  pos: 1103
}
   48 | }
   49 | ed.displayName = "FormattedMessage";
   50 | export const Z = eo.memo(ed, ec);
                    ^
   51 | (Z.displayName = "MemoizedFormattedMessage");
   52 |

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-32004.js with jscodeshift in rule un-iife SyntaxError: Identifier 'Z' has already been declared. (50:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 50, column: 13, index: 1103 },
  pos: 1103
}
   48 | }
   49 | ed.displayName = "FormattedMessage";
   50 | export const Z = eo.memo(ed, ec);
                    ^
   51 | (Z.displayName = "MemoizedFormattedMessage");
   52 |

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-32004.js with jscodeshift in rule un-es6-class SyntaxError: Identifier 'Z' has already been declared. (50:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 50, column: 13, index: 1103 },
  pos: 1103
}
   48 | }
   49 | ed.displayName = "FormattedMessage";
   50 | export const Z = eo.memo(ed, ec);
                    ^
   51 | (Z.displayName = "MemoizedFormattedMessage");
   52 |

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-32004.js with jscodeshift in rule un-async-await SyntaxError: Identifier 'Z' has already been declared. (50:13)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19140:16)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31069:14)
    at JSXParserMixin.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:31046:16)
    at JSXParserMixin.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30887:14) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 50, column: 13, index: 1103 },
  pos: 1103
}
   48 | }
   49 | ed.displayName = "FormattedMessage";
   50 | export const Z = eo.memo(ed, ec);
                    ^
   51 | (Z.displayName = "MemoizedFormattedMessage");
   52 |
◐
Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/pages/_app/module-49948.js Error: did not recognize object of type "PropertyDefinition"
    at Object.getFieldNames (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:1300:17)
    at getSortedChildNodes (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13388:23)
    at getSortedChildNodes (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13396:9)
    at getSortedChildNodes (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13396:9)
    at decorateComment (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13401:24)
    at decorateComment (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13410:11)
    at decorateComment (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13410:11)
    at decorateComment (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13410:11)
    at decorateComment (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13410:11)
    at /Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:13439:9
◇  Finished
│
◆  Successfully unminified 1224 files (19m44s)
│
└  Output directory: ./stage3-unminified/pages/_app


┌─────────┬──────────────────────────┬────────┐
│ (index) │           key            │  time  │
├─────────┼──────────────────────────┼────────┤
│    0    │     'un-while-loop'      │  2070  │
│    1    │  'un-flip-comparisons'   │  2079  │
│    2    │   'un-numeric-literal'   │  2160  │
│    3    │       'un-return'        │  2167  │
│    4    │  'un-bracket-notation'   │  2181  │
│    5    │       'un-boolean'       │  2203  │
│    6    │  'un-template-literal'   │  2220  │
│    7    │     'un-use-strict'      │  2287  │
│    8    │      'un-undefined'      │  2634  │
│    9    │  'un-variable-merging'   │  2823  │
│   10    │ 'un-assignment-merging'  │  2990  │
│   11    │     'module-mapping'     │  3587  │
│   12    │     'un-async-await'     │  4060  │
│   13    │        'un-iife'         │  4164  │
│   14    │       'un-typeof'        │  4247  │
│   15    │      'un-infinity'       │  4316  │
│   16    │    'un-esmodule-flag'    │  4557  │
│   17    │  'un-type-constructor'   │  6155  │
│   18    │    'un-conditionals'     │  6688  │
│   19    │        'un-enum'         │  6848  │
│   20    │      'un-es6-class'      │  8848  │
│   21    │    'un-export-rename'    │ 10312  │
│   22    │     'un-parameters'      │ 11368  │
│   23    │  'un-builtin-prototype'  │ 12446  │
│   24    │       'prettier-1'       │ 14311  │
│   25    │        'prettier'        │ 15642  │
│   26    │         'un-jsx'         │ 16243  │
│   27    │      'smart-inline'      │ 16392  │
│   28    │    'un-curly-braces'     │ 17804  │
│   29    │ 'un-nullish-coalescing'  │ 21042  │
│   30    │  'un-optional-chaining'  │ 21216  │
│   31    │      'smart-rename'      │ 26297  │
│   32    │   'jscodeshift-print'    │ 30003  │
│   33    │   'un-runtime-helper'    │ 70873  │
│   34    │ 'un-sequence-expression' │ 76342  │
│   35    │  'un-parameters-lebab'   │ 96794  │
│   36    │    'un-indirect-call'    │ 130591 │
│   37    │         'lebab'          │ 134495 │
│   38    │         'un-esm'         │ 141852 │
│   39    │        'unpacker'        │ 182051 │
│   40    │   'jscodeshift-parse'    │ 235709 │
└─────────┴──────────────────────────┴────────┘
Error: ENOENT: no such file or directory, open 'out/perf.json'
    at Object.openSync (node:fs:592:3)
    at Object.writeFileSync (node:fs:2323:35)
    at Object.writeFileSync (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/jsonfile/index.js:78:13)
    at writePerfStats (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/cli.cjs:2421:21)
    at nonInteractive (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/cli.cjs:2372:5)
    at async Object.handler (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/cli.cjs:2014:5) {
  errno: -2,
  syscall: 'open',
  code: 'ENOENT',
  path: 'out/perf.json'
}

from wakaru.

0xdevalias avatar 0xdevalias commented on July 24, 2024

We will need a logger injected by the context which will automatically print the file and rule name.

This is a logging library I've looked into and really liked before:

  • https://github.com/winstonjs/winston
    • winston is designed to be a simple and universal logging library with support for multiple transports. A transport is essentially a storage device for your logs. Each winston logger can have multiple transports (see: Transports) configured at different levels (see: Logging levels)

    • winston aims to decouple parts of the logging process to make it more flexible and extensible. Attention is given to supporting flexibility in log formatting (see: Formats) & levels (see: Using custom logging levels), and ensuring those APIs decoupled from the implementation of transport logging (i.e. how the logs are stored / indexed, see: Adding Custom Transports) to the API that they exposed to the programmer.

from wakaru.

0xdevalias avatar 0xdevalias commented on July 24, 2024

Using:

  • Wakaru CLI v0.0.5

Running on this source file:

Errors:

  • Failed to parse rule stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule * SyntaxError: Identifier 'f' has already been declared. (16494:23)
    • @pionxzh This seemed to happen for basically every rule I think.
Full Output
⇒ npm run wakaru:unminify-chunk 30750f44

> [email protected] wakaru:unminify-chunk
> f() { CHUNK="$1"; shift; npx @wakaru/cli all "unpacked/_next/static/chunks/${CHUNK}.js" --unpacker-output "stage2-unpacked/${CHUNK}" --unminify-output "stage3-unminified/${CHUNK}" --perf "$@"; }; f 30750f44


┌   Wakaru CLI v0.0.5
│
└  Selected features: Unpacker, Unminify

┌   Unpacker
│
◇  Unpacking unpacked/_next/static/chunks/30750f44.js
│
◇  Finished
│
◆  Successfully generated 1 modules (3m40s)
│
└  Output directory: ./stage2-unpacked/30750f44

┌   Unminify
│
◇  Unminifying... (concurrency: 1)
│
◐
Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-export-rename SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
◓  ..16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-use-strict SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-esmodule-flag SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-boolean SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-undefined SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-infinity SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-typeof SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-numeric-literal SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-template-literal SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-bracket-notation SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-return SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-while-loop SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-indirect-call SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-type-constructor SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-builtin-prototype SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-sequence-expression SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-flip-comparisons SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule smart-inline SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule smart-rename SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-optional-chaining SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-nullish-coalescing SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-conditionals SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-sequence-expression SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-parameters SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Error running rule un-parameters-lebab on /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js SyntaxError: Identifier 'f' has already been declared
    at Espree.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6874:23)
    at Espree.raiseRecoverable (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:6888:16)
    at pp$3.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:3193:16)
    at pp$7.checkLValSimple (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1908:22)
    at pp$7.checkLValPattern (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1948:18)
    at pp$8.parseVarId (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1216:14)
    at pp$8.parseVar (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1197:16)
    at pp$8.parseVarStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1087:14)
    at pp$8.parseStatement (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:822:25)
    at pp$8.parseBlock (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/unminify.worker.cjs:1151:27) {
  index: 520504,
  lineNumber: 16496,
  column: 21
}

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-jsx SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-iife SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-es6-class SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];

Failed to parse rule /Users/devalias/dev/0xdevalias/chatgpt-source-watch/stage2-unpacked/30750f44/module-89863.js with jscodeshift in rule un-async-await SyntaxError: Identifier 'f' has already been declared. (16494:23)
    at constructor (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:18018:23)
    at JSXParserMixin.raise (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:20914:23)
    at ScopeHandler.checkRedeclarationInScope (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19170:23)
    at ScopeHandler.declareName (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:19152:18)
    at JSXParserMixin.declareNameFromIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25214:20)
    at JSXParserMixin.checkIdentifier (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25210:16)
    at JSXParserMixin.checkLVal (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:25148:16)
    at JSXParserMixin.checkParams (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29748:16)
    at JSXParserMixin.<anonymous> (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:29722:18)
    at JSXParserMixin.parseBlockOrModuleBlockBody (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/chunk-VNTPEHE4.cjs:30992:52) {
  code: 'BABEL_PARSER_SYNTAX_ERROR',
  reasonCode: 'VarRedeclaration',
  loc: Position { line: 16494, column: 23, index: 520452 },
  pos: 520452
}
16492 |           const r = n.filterVisible(e.shapes);
16493 |           if (r.length && t._fullData.length) {
16494 |             r.forEach((f, o) => {
                              ^
16495 |               let c;
16496 |               const f = r[o];
◇  Finished

◆  Successfully unminified 1 files (8m14s)

└  Output directory: ./stage3-unminified/30750f44


┌─────────┬──────────────────────────┬────────┐
│ (index) │           key            │  time  │
├─────────┼──────────────────────────┼────────┤
0    │  'un-parameters-lebab'   │  502
1    │  'un-variable-merging'   │  3194
2    │     'module-mapping'     │  3399
3    │ 'un-assignment-merging'  │  4735
4    │        'un-enum'         │  9252
5    │   'jscodeshift-print'    │ 14320
6    │    'un-curly-braces'     │ 14418
7    │        'prettier'        │ 15745
8    │       'prettier-1'       │ 24273
9    │         'un-esm'         │ 29307
10    │ 'un-sequence-expression' │ 30390
11    │   'un-runtime-helper'    │ 63504
12    │   'jscodeshift-parse'    │ 79936
13    │         'lebab'          │ 186318
14    │        'unpacker'        │ 220455
└─────────┴──────────────────────────┴────────┘
Error: ENOENT: no such file or directory, open 'out/perf.json'
    at Object.openSync (node:fs:592:3)
    at Object.writeFileSync (node:fs:2323:35)
    at Object.writeFileSync (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/jsonfile/index.js:78:13)
    at writePerfStats (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/cli.cjs:2421:21)
    at nonInteractive (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/cli.cjs:2372:5)
    at async Object.handler (/Users/devalias/dev/0xdevalias/chatgpt-source-watch/node_modules/@wakaru/cli/dist/cli.cjs:2014:5) {
  errno: -2,
  syscall: 'open',
  code: 'ENOENT',
  path: 'out/perf.json'
}

from wakaru.

j4k0xb avatar j4k0xb commented on July 24, 2024

But I might want to re-implement these rules in the long run...

Yes that might be worth it
lebab is really powerful, but focuses more on running on legacy codebases by making as few changes as possible and preserving the formatting with recast
For this project I think you could get better results and performance by recreating the rules and specifically targeting es5 transpilation output. Judging by all the other open enhancement/bug issues it's not a priority tho

from wakaru.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.