├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── assets │ └── Userland-Migration-Tagline.png ├── dependabot.yml └── workflows │ ├── ci.yml │ └── codemod_publish.yml ├── .gitignore ├── .nvmrc ├── .vscode ├── extensions.json ├── mcp.json └── settings.json ├── .yamllint.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── biome.jsonc ├── package.json ├── recipes ├── buffer-atob-btoa │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-00.js │ │ │ ├── file-01.js │ │ │ ├── file-02.js │ │ │ ├── file-03.js │ │ │ ├── file-04.js │ │ │ └── file-05.js │ │ └── input │ │ │ ├── file-00.js │ │ │ ├── file-01.js │ │ │ ├── file-02.js │ │ │ ├── file-03.js │ │ │ ├── file-04.js │ │ │ └── file-05.js │ └── workflow.yaml ├── correct-ts-specifiers │ ├── .codemodrc.json │ ├── README.md │ ├── package.json │ ├── src │ │ ├── exts.ts │ │ ├── fexists.test.ts │ │ ├── fexists.ts │ │ ├── fixtures │ │ │ ├── ambiguous.js │ │ │ ├── ambiguous.ts │ │ │ ├── bar.js │ │ │ ├── d │ │ │ │ ├── ambiguous │ │ │ │ │ ├── index.d.cts │ │ │ │ │ ├── index.d.mts │ │ │ │ │ └── index.d.ts │ │ │ │ └── unambiguous │ │ │ │ │ ├── cts │ │ │ │ │ └── index.d.cts │ │ │ │ │ ├── mts │ │ │ │ │ └── index.d.mts │ │ │ │ │ └── ts │ │ │ │ │ └── index.d.ts │ │ │ ├── dir │ │ │ │ ├── cjs │ │ │ │ │ └── index.cjs │ │ │ │ ├── cts │ │ │ │ │ └── index.cts │ │ │ │ ├── js │ │ │ │ │ └── index.js │ │ │ │ ├── jsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── mjs │ │ │ │ │ └── index.mjs │ │ │ │ ├── mts │ │ │ │ │ └── index.mts │ │ │ │ ├── ts │ │ │ │ │ └── index.ts │ │ │ │ └── tsx │ │ │ │ │ └── index.tsx │ │ │ ├── e2e │ │ │ │ ├── .gitignore │ │ │ │ ├── Bird │ │ │ │ │ └── index.ts │ │ │ │ ├── Cat.ts │ │ │ │ ├── Dog │ │ │ │ │ └── index.mts │ │ │ │ ├── config.js │ │ │ │ ├── nil.ts │ │ │ │ ├── node_modules │ │ │ │ │ ├── @dep │ │ │ │ │ │ └── bar │ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── animal-features │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── nodejs-loaders │ │ │ │ │ └── types │ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ │ ├── b.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── qux.js │ │ │ │ │ └── index.ts │ │ │ │ ├── test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── zed.d.ts │ │ │ ├── foo.ts │ │ │ ├── rep.cts │ │ │ ├── rep.mts │ │ │ ├── rep.ts │ │ │ ├── rep.tsx │ │ │ ├── skip.cjs │ │ │ ├── skip.jsx │ │ │ └── skip.mjs │ │ ├── get-not-found-url.test.ts │ │ ├── get-not-found-url.ts │ │ ├── index.d.ts │ │ ├── is-dir.test.ts │ │ ├── is-dir.ts │ │ ├── is-ignorable-specifier.test.ts │ │ ├── is-ignorable-specifier.ts │ │ ├── map-imports.test.ts │ │ ├── map-imports.ts │ │ ├── replace-js-ext-with-ts-ext.test.ts │ │ ├── replace-js-ext-with-ts-ext.ts │ │ ├── resolve-specifier.test.ts │ │ ├── resolve-specifier.ts │ │ ├── resolves-to-node-module.test.ts │ │ ├── resolves-to-node-module.ts │ │ ├── workflow.test.snap.cjs │ │ ├── workflow.test.ts │ │ └── workflow.ts │ └── tsconfig.json ├── create-require-from-path │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── edge-case.js │ │ │ ├── file-1.js │ │ │ ├── file-1.mjs │ │ │ ├── file-2.js │ │ │ ├── file-2.mjs │ │ │ ├── import-with-alias.mjs │ │ │ └── require-with-alias.cjs │ │ └── input │ │ │ ├── edge-case.js │ │ │ ├── file-1.js │ │ │ ├── file-1.mjs │ │ │ ├── file-2.js │ │ │ ├── file-2.mjs │ │ │ ├── import-with-alias.mjs │ │ │ └── require-with-alias.cjs │ └── workflow.yaml ├── createCredentials-to-createSecureContext │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-1-pair.cjs │ │ │ ├── file-1-pair.mjs │ │ │ ├── file-1.cjs │ │ │ ├── file-1.mjs │ │ │ ├── file-2.cjs │ │ │ ├── file-2.mjs │ │ │ ├── file-3-pair.cjs │ │ │ ├── file-3-pair.mjs │ │ │ ├── file-3.cjs │ │ │ ├── file-3.mjs │ │ │ ├── file-5.cjs │ │ │ ├── file-5.mjs │ │ │ ├── file-6-pair.mjs │ │ │ └── file-6.mjs │ │ └── input │ │ │ ├── file-1-pair.cjs │ │ │ ├── file-1-pair.mjs │ │ │ ├── file-1.cjs │ │ │ ├── file-1.mjs │ │ │ ├── file-2.cjs │ │ │ ├── file-2.mjs │ │ │ ├── file-3-pair.cjs │ │ │ ├── file-3-pair.mjs │ │ │ ├── file-3.cjs │ │ │ ├── file-3.mjs │ │ │ ├── file-5.cjs │ │ │ ├── file-5.mjs │ │ │ ├── file-6-pair.mjs │ │ │ └── file-6.mjs │ └── workflow.yaml ├── crypto-fips-to-getFips │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-1.js │ │ │ ├── file-10.js │ │ │ ├── file-11.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.js │ │ │ ├── file-5.js │ │ │ ├── file-6.js │ │ │ ├── file-7.js │ │ │ ├── file-8.js │ │ │ └── file-9.js │ │ └── input │ │ │ ├── file-1.js │ │ │ ├── file-10.js │ │ │ ├── file-11.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.js │ │ │ ├── file-5.js │ │ │ ├── file-6.js │ │ │ ├── file-7.js │ │ │ ├── file-8.js │ │ │ └── file-9.js │ └── workflow.yaml ├── crypto-rsa-pss-update │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── basic.js │ │ │ ├── complex-ast-patterns.js │ │ │ ├── computed-properties.js │ │ │ ├── destructured.js │ │ │ ├── dynamic-options.js │ │ │ ├── method-chaining.js │ │ │ ├── namespace-import.mjs │ │ │ ├── nested-objects.js │ │ │ ├── non-rsa-pss.js │ │ │ ├── promisified-wrappers.js │ │ │ ├── spread-operators.js │ │ │ ├── template-literals.js │ │ │ ├── ternary-operators.js │ │ │ ├── this-property.js │ │ │ ├── variable-key-type.js │ │ │ └── variable-value.js │ │ └── input │ │ │ ├── basic.js │ │ │ ├── complex-ast-patterns.js │ │ │ ├── computed-properties.js │ │ │ ├── destructured.js │ │ │ ├── dynamic-options.js │ │ │ ├── method-chaining.js │ │ │ ├── namespace-import.mjs │ │ │ ├── nested-objects.js │ │ │ ├── non-rsa-pss.js │ │ │ ├── promisified-wrappers.js │ │ │ ├── spread-operators.js │ │ │ ├── template-literals.js │ │ │ ├── ternary-operators.js │ │ │ ├── this-property.js │ │ │ ├── variable-key-type.js │ │ │ └── variable-value.js │ └── workflow.yaml ├── dirent-path-to-parent-path │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── 01.js │ │ │ ├── 02.js │ │ │ ├── 03.js │ │ │ ├── 04.js │ │ │ ├── 05.js │ │ │ ├── 06.js │ │ │ ├── 07.js │ │ │ ├── 08.js │ │ │ ├── 09.js │ │ │ ├── 10.js │ │ │ ├── 11.js │ │ │ ├── 12.js │ │ │ └── 13.js │ │ └── input │ │ │ ├── 01.js │ │ │ ├── 02.js │ │ │ ├── 03.js │ │ │ ├── 04.js │ │ │ ├── 05.js │ │ │ ├── 06.js │ │ │ ├── 07.js │ │ │ ├── 08.js │ │ │ ├── 09.js │ │ │ ├── 10.js │ │ │ ├── 11.js │ │ │ ├── 12.js │ │ │ └── 13.js │ └── workflow.yaml ├── fs-access-mode-constants │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-00.js │ │ │ ├── file-01.js │ │ │ ├── file-02.js │ │ │ ├── file-03.js │ │ │ ├── file-04.js │ │ │ ├── file-05.js │ │ │ ├── file-06.js │ │ │ └── file-07.js │ │ └── input │ │ │ ├── file-00.js │ │ │ ├── file-01.js │ │ │ ├── file-02.js │ │ │ ├── file-03.js │ │ │ ├── file-04.js │ │ │ ├── file-05.js │ │ │ ├── file-06.js │ │ │ └── file-07.js │ └── workflow.yaml ├── fs-truncate-fd-deprecation │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── dynamic-import-await.mjs │ │ │ ├── dynamic-import.mjs │ │ │ ├── edge-case.mjs │ │ │ ├── file-1.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.mjs │ │ │ └── file-5.mjs │ │ └── input │ │ │ ├── dynamic-import-await.mjs │ │ │ ├── dynamic-import.mjs │ │ │ ├── edge-case.mjs │ │ │ ├── file-1.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.mjs │ │ │ └── file-5.mjs │ └── workflow.yaml ├── http-classes-with-new │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-1.js │ │ │ └── file-2.js │ │ └── input │ │ │ ├── file-1.js │ │ │ └── file-2.js │ └── workflow.yaml ├── import-assertions-to-attributes │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-edge-case.js │ │ │ ├── file.cjs │ │ │ ├── file.js │ │ │ └── file.mjs │ │ └── input │ │ │ ├── file-edge-case.js │ │ │ ├── file.cjs │ │ │ ├── file.js │ │ │ └── file.mjs │ └── workflow.yaml ├── node-url-to-whatwg-url │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ ├── import-process.ts │ │ ├── url-format.ts │ │ └── url-parse.ts │ ├── tests │ │ ├── import-process │ │ │ ├── expected │ │ │ │ ├── file-1.js │ │ │ │ ├── file-2.js │ │ │ │ ├── file-3.js │ │ │ │ ├── file-4.js │ │ │ │ ├── file-5.js │ │ │ │ ├── file-6.js │ │ │ │ └── file-7.js │ │ │ └── input │ │ │ │ ├── file-1.js │ │ │ │ ├── file-2.js │ │ │ │ ├── file-3.js │ │ │ │ ├── file-4.js │ │ │ │ ├── file-5.js │ │ │ │ ├── file-6.js │ │ │ │ └── file-7.js │ │ ├── url-format │ │ │ ├── expected │ │ │ │ ├── file-1.js │ │ │ │ ├── file-10.js │ │ │ │ ├── file-2.js │ │ │ │ ├── file-3.js │ │ │ │ ├── file-4.mjs │ │ │ │ ├── file-5.mjs │ │ │ │ ├── file-6.js │ │ │ │ ├── file-7.js │ │ │ │ ├── file-8.js │ │ │ │ └── file-9.js │ │ │ └── input │ │ │ │ ├── file-1.js │ │ │ │ ├── file-10.js │ │ │ │ ├── file-2.js │ │ │ │ ├── file-3.js │ │ │ │ ├── file-4.mjs │ │ │ │ ├── file-5.mjs │ │ │ │ ├── file-6.js │ │ │ │ ├── file-7.js │ │ │ │ ├── file-8.js │ │ │ │ └── file-9.js │ │ └── url-parse │ │ │ ├── expected │ │ │ ├── file-1.js │ │ │ ├── file-10.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.js │ │ │ ├── file-5.mjs │ │ │ ├── file-6.mjs │ │ │ ├── file-7.mjs │ │ │ ├── file-8.mjs │ │ │ └── file-9.js │ │ │ └── input │ │ │ ├── file-1.js │ │ │ ├── file-10.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.js │ │ │ ├── file-5.mjs │ │ │ ├── file-6.mjs │ │ │ ├── file-7.mjs │ │ │ ├── file-8.mjs │ │ │ └── file-9.js │ └── workflow.yaml ├── process-assert-to-node-assert │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── 01-basic-global-process-assert.js │ │ │ ├── 02-basic-commonjs.cjs │ │ │ ├── 03-esm-import-process.mjs │ │ │ ├── 04-mixed-process-usage.js │ │ │ ├── 05-require-process.js │ │ │ ├── 06-destructured-assert-only.js │ │ │ ├── 07-destructured-mixed-bindings.js │ │ │ ├── 08-aliased-destructured-assert.js │ │ │ ├── 09-aliased-destructured-mixed.js │ │ │ ├── 10-require-destructured.js │ │ │ ├── 11-already-has-assert-import.js │ │ │ ├── 12-already-has-assert-require.js │ │ │ ├── 13-no-process-assert.js │ │ │ ├── 14-nested-in-function.js │ │ │ ├── 15-multiple-assert-methods.js │ │ │ ├── 16-mixed-require-and-assert.js │ │ │ ├── 17-complex-nested-class.js │ │ │ └── 18-dynamic-import.mjs │ │ └── input │ │ │ ├── 01-basic-global-process-assert.js │ │ │ ├── 02-basic-commonjs.cjs │ │ │ ├── 03-esm-import-process.mjs │ │ │ ├── 04-mixed-process-usage.js │ │ │ ├── 05-require-process.js │ │ │ ├── 06-destructured-assert-only.js │ │ │ ├── 07-destructured-mixed-bindings.js │ │ │ ├── 08-aliased-destructured-assert.js │ │ │ ├── 09-aliased-destructured-mixed.js │ │ │ ├── 10-require-destructured.js │ │ │ ├── 11-already-has-assert-import.js │ │ │ ├── 12-already-has-assert-require.js │ │ │ ├── 13-no-process-assert.js │ │ │ ├── 14-nested-in-function.js │ │ │ ├── 15-multiple-assert-methods.js │ │ │ ├── 16-mixed-require-and-assert.js │ │ │ ├── 17-complex-nested-class.js │ │ │ └── 18-dynamic-import.mjs │ └── workflow.yaml ├── process-main-module │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── destructuring-process.js │ │ │ ├── file-1.js │ │ │ ├── importing-multiple-values.js │ │ │ ├── multiple-requires.js │ │ │ └── with-require.js │ │ └── input │ │ │ ├── destructuring-process.js │ │ │ ├── file-1.js │ │ │ ├── importing-multiple-values.js │ │ │ ├── multiple-requires.js │ │ │ └── with-require.js │ └── workflow.yaml ├── repl-builtin-modules │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-1.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.js │ │ │ ├── file-5.js │ │ │ ├── file-6.mjs │ │ │ ├── file-7.mjs │ │ │ ├── file-8.mjs │ │ │ └── file-9.mjs │ │ └── input │ │ │ ├── file-1.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.js │ │ │ ├── file-5.js │ │ │ ├── file-6.mjs │ │ │ ├── file-7.mjs │ │ │ ├── file-8.mjs │ │ │ └── file-9.mjs │ └── workflow.yaml ├── repl-classes-with-new │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-1.js │ │ │ ├── file-2.js │ │ │ ├── file-3.mjs │ │ │ └── file-4.mjs │ │ └── input │ │ │ ├── file-1.js │ │ │ ├── file-2.js │ │ │ ├── file-3.mjs │ │ │ └── file-4.mjs │ └── workflow.yaml ├── rmdir │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-1.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.js │ │ │ ├── file-5.js │ │ │ ├── file-6.js │ │ │ └── file-7.js │ │ └── input │ │ │ ├── file-1.js │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.js │ │ │ ├── file-5.js │ │ │ ├── file-6.js │ │ │ └── file-7.js │ └── workflow.yaml ├── slow-buffer-to-buffer-alloc-unsafe-slow │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-01.js │ │ │ ├── file-02.js │ │ │ ├── file-03.mjs │ │ │ ├── file-04.js │ │ │ ├── file-05.js │ │ │ ├── file-06.js │ │ │ ├── file-07.js │ │ │ ├── file-08.js │ │ │ ├── file-09.mjs │ │ │ ├── file-10.js │ │ │ ├── file-11.js │ │ │ ├── file-12.mjs │ │ │ └── file-13.mjs │ │ └── input │ │ │ ├── file-01.js │ │ │ ├── file-02.js │ │ │ ├── file-03.mjs │ │ │ ├── file-04.js │ │ │ ├── file-05.js │ │ │ ├── file-06.js │ │ │ ├── file-07.js │ │ │ ├── file-08.js │ │ │ ├── file-09.mjs │ │ │ ├── file-10.js │ │ │ ├── file-11.js │ │ │ ├── file-12.mjs │ │ │ └── file-13.mjs │ └── workflow.yaml ├── tmpdir-to-tmpdir │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-0.js │ │ │ ├── file-0.mjs │ │ │ ├── file-1.js │ │ │ ├── file-1.mjs │ │ │ ├── file-2.js │ │ │ ├── file-2.mjs │ │ │ ├── file-3.js │ │ │ └── file-3.mjs │ │ └── input │ │ │ ├── file-0.js │ │ │ ├── file-0.mjs │ │ │ ├── file-1.js │ │ │ ├── file-1.mjs │ │ │ ├── file-2.js │ │ │ ├── file-2.mjs │ │ │ ├── file-3.js │ │ │ └── file-3.mjs │ └── workflow.yaml ├── types-is-native-error │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── complex-named-require-scenario.cjs │ │ │ ├── named-import.js │ │ │ ├── renamed-import.js │ │ │ ├── renamed-types-with-multiple-usages.cjs │ │ │ ├── require-usage.cjs │ │ │ └── types-with-multiple-usages.cjs │ │ └── input │ │ │ ├── complex-named-require-scenario.cjs │ │ │ ├── named-import.js │ │ │ ├── renamed-import.js │ │ │ ├── renamed-types-with-multiple-usages.cjs │ │ │ ├── require-usage.cjs │ │ │ └── types-with-multiple-usages.cjs │ └── workflow.yaml ├── util-extend-to-object-assign │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── alias.js │ │ │ ├── destructuring.js │ │ │ ├── dynamic.js │ │ │ ├── edge_cases.js │ │ │ ├── import.js │ │ │ ├── mixed-ns.js │ │ │ ├── mixed.js │ │ │ └── require.js │ │ └── input │ │ │ ├── alias.js │ │ │ ├── destructuring.js │ │ │ ├── dynamic.js │ │ │ ├── edge_cases.js │ │ │ ├── import.js │ │ │ ├── mixed-ns.js │ │ │ ├── mixed.js │ │ │ └── require.js │ └── workflow.yaml ├── util-is │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── file-1.js │ │ │ ├── file-10.mjs │ │ │ ├── file-11.js │ │ │ ├── file-12.mjs │ │ │ ├── file-13.mjs │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.mjs │ │ │ ├── file-5.mjs │ │ │ ├── file-6.js │ │ │ ├── file-7.js │ │ │ ├── file-8.mjs │ │ │ └── file-9.mjs │ │ └── input │ │ │ ├── file-1.js │ │ │ ├── file-10.mjs │ │ │ ├── file-11.js │ │ │ ├── file-12.mjs │ │ │ ├── file-13.mjs │ │ │ ├── file-2.js │ │ │ ├── file-3.js │ │ │ ├── file-4.mjs │ │ │ ├── file-5.mjs │ │ │ ├── file-6.js │ │ │ ├── file-7.js │ │ │ ├── file-8.mjs │ │ │ └── file-9.mjs │ └── workflow.yaml ├── util-log-to-console-log │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── esm-import.mjs │ │ │ ├── esm-namespace-import.mjs │ │ │ ├── multiple-arguments.js │ │ │ ├── multiple-imports.cjs │ │ │ ├── named-import-log-only.js │ │ │ ├── real-scenario.js │ │ │ ├── simple-scenario.js │ │ │ └── with-interpolation.js │ │ └── input │ │ │ ├── esm-import.mjs │ │ │ ├── esm-namespace-import.mjs │ │ │ ├── multiple-arguments.js │ │ │ ├── multiple-imports.cjs │ │ │ ├── named-import-log-only.js │ │ │ ├── real-scenario.js │ │ │ ├── simple-scenario.js │ │ │ └── with-interpolation.js │ └── workflow.yaml ├── util-print-to-console-log │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ │ └── workflow.ts │ ├── tests │ │ ├── expected │ │ │ ├── debug.js │ │ │ ├── error.js │ │ │ ├── esm-import.mjs │ │ │ ├── esm-namespace-import.mjs │ │ │ ├── multiple-arguments.js │ │ │ ├── multiple-imports.cjs │ │ │ ├── named-import-print-only.js │ │ │ ├── print.js │ │ │ ├── puts.js │ │ │ ├── real-scenario.js │ │ │ ├── simple-scenario.js │ │ │ └── with-interpolation.js │ │ └── input │ │ │ ├── debug.js │ │ │ ├── error.js │ │ │ ├── esm-import.mjs │ │ │ ├── esm-namespace-import.mjs │ │ │ ├── multiple-arguments.js │ │ │ ├── multiple-imports.cjs │ │ │ ├── named-import-print-only.js │ │ │ ├── print.js │ │ │ ├── puts.js │ │ │ ├── real-scenario.js │ │ │ ├── simple-scenario.js │ │ │ └── with-interpolation.js │ └── workflow.yaml └── zlib-bytesread-to-byteswritten │ ├── README.md │ ├── codemod.yaml │ ├── package.json │ ├── src │ └── workflow.ts │ ├── tests │ ├── expected │ │ ├── assigned_bytesRead_variable.js │ │ ├── deflate_finish_stats.js │ │ ├── destructured_createGzip.js │ │ ├── dynamic_import.js │ │ ├── esm_createGzip_import.js │ │ ├── gzip_end_event.js │ │ ├── let_var_streams.js │ │ ├── track_stream_progress.js │ │ └── track_stream_progress_multiple_args.js │ └── input │ │ ├── assigned_bytesRead_variable.js │ │ ├── deflate_finish_stats.js │ │ ├── destructured_createGzip.js │ │ ├── dynamic_import.js │ │ ├── esm_createGzip_import.js │ │ ├── gzip_end_event.js │ │ ├── let_var_streams.js │ │ ├── track_stream_progress.js │ │ └── track_stream_progress_multiple_args.js │ └── workflow.yaml ├── tsconfig.json └── utils ├── README.md ├── package.json ├── src ├── ast-grep │ ├── get-scope.test.ts │ ├── get-scope.ts │ ├── import-statement.test.ts │ ├── import-statement.ts │ ├── package-json.test.ts │ ├── package-json.ts │ ├── remove-binding.test.ts │ ├── remove-binding.ts │ ├── remove-lines.test.ts │ ├── remove-lines.ts │ ├── require-call.test.ts │ ├── require-call.ts │ ├── resolve-binding-path.test.ts │ ├── resolve-binding-path.ts │ ├── update-binding.test.ts │ └── update-binding.ts ├── codemod-jssg-context.ts ├── logger.test.snap.cjs ├── logger.test.ts ├── logger.ts ├── snapshots.ts ├── spawn-promisified.test.ts └── spawn-promisified.ts └── types └── jssg-context.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @nodejs/userland-migrations 2 | -------------------------------------------------------------------------------- /.github/assets/Userland-Migration-Tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.github/assets/Userland-Migration-Tagline.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codemod_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.github/workflows/codemod_publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/README.md -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/biome.jsonc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/package.json -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/README.md -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/codemod.yaml -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/package.json -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/src/workflow.ts -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/expected/file-00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/expected/file-00.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/expected/file-01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/expected/file-01.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/expected/file-02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/expected/file-02.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/expected/file-03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/expected/file-03.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/expected/file-04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/expected/file-04.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/expected/file-05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/expected/file-05.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/input/file-00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/input/file-00.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/input/file-01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/input/file-01.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/input/file-02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/input/file-02.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/input/file-03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/input/file-03.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/input/file-04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/input/file-04.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/tests/input/file-05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/tests/input/file-05.js -------------------------------------------------------------------------------- /recipes/buffer-atob-btoa/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/buffer-atob-btoa/workflow.yaml -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/.codemodrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/.codemodrc.json -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/README.md -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/package.json -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/exts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/exts.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fexists.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fexists.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fexists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fexists.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/ambiguous.js: -------------------------------------------------------------------------------- 1 | export const abc = 'abc'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/ambiguous.ts: -------------------------------------------------------------------------------- 1 | export const xyz = 'xyz'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/bar.js: -------------------------------------------------------------------------------- 1 | export const bar = 'bar'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/d/ambiguous/index.d.cts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/d/ambiguous/index.d.mts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/d/ambiguous/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/d/unambiguous/cts/index.d.cts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/d/unambiguous/mts/index.d.mts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/d/unambiguous/ts/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/dir/cjs/index.cjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/dir/cts/index.cts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/dir/js/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/dir/jsx/index.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/dir/mjs/index.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/dir/mts/index.mts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/dir/ts/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/dir/tsx/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/.gitignore -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/Bird/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/Bird/index.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/Cat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/Cat.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/Dog/index.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/Dog/index.mts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/config.js -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/nil.ts: -------------------------------------------------------------------------------- 1 | export const nil = 0; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/@dep/bar/bar.js: -------------------------------------------------------------------------------- 1 | export const bar = 'bar'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/@dep/bar/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@dep/bar'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/@dep/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/@dep/bar/package.json -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/animal-features/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/animal-features/index.d.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/animal-features/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/animal-features/package.json -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/foo/bar.js: -------------------------------------------------------------------------------- 1 | export default 'abc123'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/foo/foo.js: -------------------------------------------------------------------------------- 1 | export const foo = 'foo'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/foo/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'foo'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/foo/package.json -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/nodejs-loaders: -------------------------------------------------------------------------------- 1 | ../../../../node_modules/nodejs-loaders/ -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/types/a.d.ts: -------------------------------------------------------------------------------- 1 | export type A = 'a'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/types/b.d.ts: -------------------------------------------------------------------------------- 1 | export type B = 'b'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/types/index.js: -------------------------------------------------------------------------------- 1 | // delete me 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/node_modules/types/package.json: -------------------------------------------------------------------------------- 1 | { "name": "types" } 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/package.json -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/qux.js/index.ts: -------------------------------------------------------------------------------- 1 | export const qux = 1; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/fixtures/e2e/tsconfig.json -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/e2e/zed.d.ts: -------------------------------------------------------------------------------- 1 | export type Zed = number; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/foo.ts: -------------------------------------------------------------------------------- 1 | export const foo = 'foo'; 2 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/rep.cts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/rep.mts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/rep.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/rep.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/skip.cjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/skip.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/fixtures/skip.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/get-not-found-url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/get-not-found-url.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/get-not-found-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/get-not-found-url.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/index.d.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/is-dir.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/is-dir.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/is-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/is-dir.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/is-ignorable-specifier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/is-ignorable-specifier.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/is-ignorable-specifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/is-ignorable-specifier.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/map-imports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/map-imports.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/map-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/map-imports.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/replace-js-ext-with-ts-ext.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/replace-js-ext-with-ts-ext.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/replace-js-ext-with-ts-ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/replace-js-ext-with-ts-ext.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/resolve-specifier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/resolve-specifier.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/resolve-specifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/resolve-specifier.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/resolves-to-node-module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/resolves-to-node-module.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/resolves-to-node-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/resolves-to-node-module.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/workflow.test.snap.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/workflow.test.snap.cjs -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/workflow.test.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/src/workflow.ts -------------------------------------------------------------------------------- /recipes/correct-ts-specifiers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/correct-ts-specifiers/tsconfig.json -------------------------------------------------------------------------------- /recipes/create-require-from-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/README.md -------------------------------------------------------------------------------- /recipes/create-require-from-path/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/codemod.yaml -------------------------------------------------------------------------------- /recipes/create-require-from-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/package.json -------------------------------------------------------------------------------- /recipes/create-require-from-path/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/src/workflow.ts -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/expected/edge-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/expected/edge-case.js -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/expected/file-1.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/expected/file-1.mjs -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/expected/file-2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/expected/file-2.mjs -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/expected/import-with-alias.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/expected/import-with-alias.mjs -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/expected/require-with-alias.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/expected/require-with-alias.cjs -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/input/edge-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/input/edge-case.js -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/input/file-1.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/input/file-1.mjs -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/input/file-2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/input/file-2.mjs -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/input/import-with-alias.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/input/import-with-alias.mjs -------------------------------------------------------------------------------- /recipes/create-require-from-path/tests/input/require-with-alias.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/tests/input/require-with-alias.cjs -------------------------------------------------------------------------------- /recipes/create-require-from-path/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/create-require-from-path/workflow.yaml -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/README.md -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/codemod.yaml -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/package.json -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/src/workflow.ts -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-1-pair.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-1-pair.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-1-pair.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-1-pair.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-1.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-1.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-1.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-2.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-2.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-3-pair.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-3-pair.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-3-pair.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-3-pair.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-3.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-3.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-3.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-5.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-5.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-5.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-6-pair.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-6-pair.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/expected/file-6.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/expected/file-6.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-1-pair.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-1-pair.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-1-pair.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-1-pair.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-1.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-1.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-1.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-2.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-2.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-3-pair.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-3-pair.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-3-pair.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-3-pair.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-3.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-3.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-3.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-5.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-5.cjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-5.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-6-pair.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-6-pair.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/tests/input/file-6.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/tests/input/file-6.mjs -------------------------------------------------------------------------------- /recipes/createCredentials-to-createSecureContext/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/createCredentials-to-createSecureContext/workflow.yaml -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/README.md -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/codemod.yaml -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/package.json -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/src/workflow.ts -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-10.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-11.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-3.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-4.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-5.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-6.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-7.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-8.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/expected/file-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/expected/file-9.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-10.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-11.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-3.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-4.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-5.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-6.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-7.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-8.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/tests/input/file-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/tests/input/file-9.js -------------------------------------------------------------------------------- /recipes/crypto-fips-to-getFips/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-fips-to-getFips/workflow.yaml -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/README.md -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/codemod.yaml -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/package.json -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/src/workflow.ts -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/basic.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/complex-ast-patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/complex-ast-patterns.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/computed-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/computed-properties.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/destructured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/destructured.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/dynamic-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/dynamic-options.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/method-chaining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/method-chaining.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/namespace-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/namespace-import.mjs -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/nested-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/nested-objects.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/non-rsa-pss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/non-rsa-pss.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/promisified-wrappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/promisified-wrappers.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/spread-operators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/spread-operators.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/template-literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/template-literals.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/ternary-operators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/ternary-operators.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/this-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/this-property.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/variable-key-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/variable-key-type.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/expected/variable-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/expected/variable-value.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/basic.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/complex-ast-patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/complex-ast-patterns.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/computed-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/computed-properties.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/destructured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/destructured.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/dynamic-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/dynamic-options.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/method-chaining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/method-chaining.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/namespace-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/namespace-import.mjs -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/nested-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/nested-objects.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/non-rsa-pss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/non-rsa-pss.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/promisified-wrappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/promisified-wrappers.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/spread-operators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/spread-operators.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/template-literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/template-literals.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/ternary-operators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/ternary-operators.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/this-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/this-property.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/variable-key-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/variable-key-type.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/tests/input/variable-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/tests/input/variable-value.js -------------------------------------------------------------------------------- /recipes/crypto-rsa-pss-update/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/crypto-rsa-pss-update/workflow.yaml -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/README.md -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/codemod.yaml -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/package.json -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/src/workflow.ts -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/01.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/02.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/03.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/04.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/05.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/06.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/07.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/08.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/09.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/10.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/11.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/12.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/expected/13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/expected/13.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/01.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/02.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/03.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/04.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/05.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/06.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/07.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/08.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/09.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/10.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/11.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/12.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/tests/input/13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/tests/input/13.js -------------------------------------------------------------------------------- /recipes/dirent-path-to-parent-path/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/dirent-path-to-parent-path/workflow.yaml -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/README.md -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/codemod.yaml -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/package.json -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/src/workflow.ts -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/expected/file-00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/expected/file-00.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/expected/file-01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/expected/file-01.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/expected/file-02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/expected/file-02.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/expected/file-03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/expected/file-03.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/expected/file-04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/expected/file-04.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/expected/file-05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/expected/file-05.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/expected/file-06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/expected/file-06.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/expected/file-07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/expected/file-07.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/input/file-00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/input/file-00.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/input/file-01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/input/file-01.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/input/file-02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/input/file-02.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/input/file-03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/input/file-03.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/input/file-04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/input/file-04.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/input/file-05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/input/file-05.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/input/file-06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/input/file-06.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/tests/input/file-07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/tests/input/file-07.js -------------------------------------------------------------------------------- /recipes/fs-access-mode-constants/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-access-mode-constants/workflow.yaml -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/README.md -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/codemod.yaml -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/package.json -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/src/workflow.ts -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/expected/dynamic-import-await.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/expected/dynamic-import-await.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/expected/dynamic-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/expected/dynamic-import.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/expected/edge-case.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/expected/edge-case.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/expected/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/expected/file-3.js -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/expected/file-4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/expected/file-4.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/expected/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/expected/file-5.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/input/dynamic-import-await.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/input/dynamic-import-await.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/input/dynamic-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/input/dynamic-import.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/input/edge-case.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/input/edge-case.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/input/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/input/file-3.js -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/input/file-4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/input/file-4.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/tests/input/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/tests/input/file-5.mjs -------------------------------------------------------------------------------- /recipes/fs-truncate-fd-deprecation/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/fs-truncate-fd-deprecation/workflow.yaml -------------------------------------------------------------------------------- /recipes/http-classes-with-new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/README.md -------------------------------------------------------------------------------- /recipes/http-classes-with-new/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/codemod.yaml -------------------------------------------------------------------------------- /recipes/http-classes-with-new/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/package.json -------------------------------------------------------------------------------- /recipes/http-classes-with-new/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/src/workflow.ts -------------------------------------------------------------------------------- /recipes/http-classes-with-new/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/http-classes-with-new/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/http-classes-with-new/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/http-classes-with-new/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/http-classes-with-new/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/http-classes-with-new/workflow.yaml -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/README.md -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/codemod.yaml -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/package.json -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/src/workflow.ts -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/tests/expected/file-edge-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/tests/expected/file-edge-case.js -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/tests/expected/file.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/tests/expected/file.cjs -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/tests/expected/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/tests/expected/file.js -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/tests/expected/file.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/tests/expected/file.mjs -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/tests/input/file-edge-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/tests/input/file-edge-case.js -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/tests/input/file.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/tests/input/file.cjs -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/tests/input/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/tests/input/file.js -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/tests/input/file.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/tests/input/file.mjs -------------------------------------------------------------------------------- /recipes/import-assertions-to-attributes/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/import-assertions-to-attributes/workflow.yaml -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/README.md -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/codemod.yaml -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/package.json -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/src/import-process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/src/import-process.ts -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/src/url-format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/src/url-format.ts -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/src/url-parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/src/url-parse.ts -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/expected/file-1.js: -------------------------------------------------------------------------------- 1 | 2 | const x = 1; 3 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/expected/file-2.js: -------------------------------------------------------------------------------- 1 | import { format as fmt } from 'node:url'; 2 | 3 | console.log(fmt); 4 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/expected/file-3.js: -------------------------------------------------------------------------------- 1 | 2 | function foo() { return 1; } 3 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/expected/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/import-process/expected/file-4.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/expected/file-5.js: -------------------------------------------------------------------------------- 1 | 2 | export const v = 42; 3 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/expected/file-6.js: -------------------------------------------------------------------------------- 1 | 2 | doStuff(); 3 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/expected/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/import-process/expected/file-7.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/input/file-1.js: -------------------------------------------------------------------------------- 1 | import url from 'node:url'; 2 | 3 | const x = 1; 4 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/input/file-2.js: -------------------------------------------------------------------------------- 1 | import { parse, format as fmt } from 'node:url'; 2 | 3 | console.log(fmt); 4 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/input/file-3.js: -------------------------------------------------------------------------------- 1 | const url = require('node:url'); 2 | 3 | function foo() { return 1; } 4 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/input/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/import-process/input/file-4.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/input/file-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/import-process/input/file-5.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/input/file-6.js: -------------------------------------------------------------------------------- 1 | const { parse } = require('node:url'); 2 | 3 | doStuff(); 4 | -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/import-process/input/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/import-process/input/file-7.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-1.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-10.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-2.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-3.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-4.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-5.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-6.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-7.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-8.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/expected/file-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/expected/file-9.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-1.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-10.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-2.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-3.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-4.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-5.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-6.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-7.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-8.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-format/input/file-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-format/input/file-9.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-1.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-10.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-2.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-3.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-4.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-5.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-6.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-6.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-7.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-7.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-8.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-8.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/expected/file-9.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-1.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-10.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-2.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-3.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-4.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-5.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-6.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-6.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-7.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-7.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-8.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-8.mjs -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/tests/url-parse/input/file-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/tests/url-parse/input/file-9.js -------------------------------------------------------------------------------- /recipes/node-url-to-whatwg-url/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/node-url-to-whatwg-url/workflow.yaml -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/README.md -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/codemod.yaml -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/package.json -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/src/workflow.ts -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/01-basic-global-process-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/01-basic-global-process-assert.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/02-basic-commonjs.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/02-basic-commonjs.cjs -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/03-esm-import-process.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/03-esm-import-process.mjs -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/04-mixed-process-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/04-mixed-process-usage.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/05-require-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/05-require-process.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/06-destructured-assert-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/06-destructured-assert-only.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/07-destructured-mixed-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/07-destructured-mixed-bindings.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/08-aliased-destructured-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/08-aliased-destructured-assert.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/09-aliased-destructured-mixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/09-aliased-destructured-mixed.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/10-require-destructured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/10-require-destructured.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/11-already-has-assert-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/11-already-has-assert-import.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/12-already-has-assert-require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/12-already-has-assert-require.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/13-no-process-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/13-no-process-assert.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/14-nested-in-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/14-nested-in-function.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/15-multiple-assert-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/15-multiple-assert-methods.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/16-mixed-require-and-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/16-mixed-require-and-assert.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/17-complex-nested-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/17-complex-nested-class.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/expected/18-dynamic-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/expected/18-dynamic-import.mjs -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/01-basic-global-process-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/01-basic-global-process-assert.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/02-basic-commonjs.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/02-basic-commonjs.cjs -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/03-esm-import-process.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/03-esm-import-process.mjs -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/04-mixed-process-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/04-mixed-process-usage.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/05-require-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/05-require-process.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/06-destructured-assert-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/06-destructured-assert-only.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/07-destructured-mixed-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/07-destructured-mixed-bindings.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/08-aliased-destructured-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/08-aliased-destructured-assert.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/09-aliased-destructured-mixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/09-aliased-destructured-mixed.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/10-require-destructured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/10-require-destructured.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/11-already-has-assert-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/11-already-has-assert-import.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/12-already-has-assert-require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/12-already-has-assert-require.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/13-no-process-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/13-no-process-assert.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/14-nested-in-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/14-nested-in-function.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/15-multiple-assert-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/15-multiple-assert-methods.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/16-mixed-require-and-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/16-mixed-require-and-assert.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/17-complex-nested-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/17-complex-nested-class.js -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/tests/input/18-dynamic-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/tests/input/18-dynamic-import.mjs -------------------------------------------------------------------------------- /recipes/process-assert-to-node-assert/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-assert-to-node-assert/workflow.yaml -------------------------------------------------------------------------------- /recipes/process-main-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/README.md -------------------------------------------------------------------------------- /recipes/process-main-module/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/codemod.yaml -------------------------------------------------------------------------------- /recipes/process-main-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/package.json -------------------------------------------------------------------------------- /recipes/process-main-module/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/src/workflow.ts -------------------------------------------------------------------------------- /recipes/process-main-module/tests/expected/destructuring-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/expected/destructuring-process.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/expected/importing-multiple-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/expected/importing-multiple-values.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/expected/multiple-requires.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/expected/multiple-requires.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/expected/with-require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/expected/with-require.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/input/destructuring-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/input/destructuring-process.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/input/importing-multiple-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/input/importing-multiple-values.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/input/multiple-requires.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/input/multiple-requires.js -------------------------------------------------------------------------------- /recipes/process-main-module/tests/input/with-require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/tests/input/with-require.js -------------------------------------------------------------------------------- /recipes/process-main-module/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/process-main-module/workflow.yaml -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/README.md -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/codemod.yaml -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/package.json -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/src/workflow.ts -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-3.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-4.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-5.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-6.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-6.mjs -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-7.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-7.mjs -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-8.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-8.mjs -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/expected/file-9.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/expected/file-9.mjs -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-3.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-4.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-5.js -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-6.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-6.mjs -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-7.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-7.mjs -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-8.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-8.mjs -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/tests/input/file-9.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/tests/input/file-9.mjs -------------------------------------------------------------------------------- /recipes/repl-builtin-modules/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-builtin-modules/workflow.yaml -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/README.md -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/codemod.yaml -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/package.json -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/src/workflow.ts -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/tests/expected/file-3.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/tests/expected/file-3.mjs -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/tests/expected/file-4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/tests/expected/file-4.mjs -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/tests/input/file-3.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/tests/input/file-3.mjs -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/tests/input/file-4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/tests/input/file-4.mjs -------------------------------------------------------------------------------- /recipes/repl-classes-with-new/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/repl-classes-with-new/workflow.yaml -------------------------------------------------------------------------------- /recipes/rmdir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/README.md -------------------------------------------------------------------------------- /recipes/rmdir/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/codemod.yaml -------------------------------------------------------------------------------- /recipes/rmdir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/package.json -------------------------------------------------------------------------------- /recipes/rmdir/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/src/workflow.ts -------------------------------------------------------------------------------- /recipes/rmdir/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/expected/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/expected/file-3.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/expected/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/expected/file-4.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/expected/file-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/expected/file-5.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/expected/file-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/expected/file-6.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/expected/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/expected/file-7.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/input/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/input/file-3.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/input/file-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/input/file-4.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/input/file-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/input/file-5.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/input/file-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/input/file-6.js -------------------------------------------------------------------------------- /recipes/rmdir/tests/input/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/tests/input/file-7.js -------------------------------------------------------------------------------- /recipes/rmdir/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/rmdir/workflow.yaml -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/README.md -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/codemod.yaml -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/package.json -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/src/workflow.ts -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-01.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-02.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-03.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-03.mjs -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-04.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-05.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-06.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-07.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-08.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-09.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-09.mjs -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-10.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-11.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-12.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-12.mjs -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-13.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/expected/file-13.mjs -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-01.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-02.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-03.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-03.mjs -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-04.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-05.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-06.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-07.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-08.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-09.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-09.mjs -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-10.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-11.js -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-12.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-12.mjs -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-13.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/tests/input/file-13.mjs -------------------------------------------------------------------------------- /recipes/slow-buffer-to-buffer-alloc-unsafe-slow/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/slow-buffer-to-buffer-alloc-unsafe-slow/workflow.yaml -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/README.md -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/codemod.yaml -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/package.json -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/src/workflow.ts -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/expected/file-0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/expected/file-0.js -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/expected/file-0.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/expected/file-0.mjs -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/expected/file-1.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/expected/file-1.mjs -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/expected/file-2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/expected/file-2.mjs -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/expected/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/expected/file-3.js -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/expected/file-3.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/expected/file-3.mjs -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/input/file-0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/input/file-0.js -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/input/file-0.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/input/file-0.mjs -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/input/file-1.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/input/file-1.mjs -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/input/file-2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/input/file-2.mjs -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/input/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/input/file-3.js -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/tests/input/file-3.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/tests/input/file-3.mjs -------------------------------------------------------------------------------- /recipes/tmpdir-to-tmpdir/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/tmpdir-to-tmpdir/workflow.yaml -------------------------------------------------------------------------------- /recipes/types-is-native-error/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/README.md -------------------------------------------------------------------------------- /recipes/types-is-native-error/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/codemod.yaml -------------------------------------------------------------------------------- /recipes/types-is-native-error/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/package.json -------------------------------------------------------------------------------- /recipes/types-is-native-error/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/src/workflow.ts -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/expected/complex-named-require-scenario.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/expected/complex-named-require-scenario.cjs -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/expected/named-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/expected/named-import.js -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/expected/renamed-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/expected/renamed-import.js -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/expected/renamed-types-with-multiple-usages.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/expected/renamed-types-with-multiple-usages.cjs -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/expected/require-usage.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/expected/require-usage.cjs -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/expected/types-with-multiple-usages.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/expected/types-with-multiple-usages.cjs -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/input/complex-named-require-scenario.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/input/complex-named-require-scenario.cjs -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/input/named-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/input/named-import.js -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/input/renamed-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/input/renamed-import.js -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/input/renamed-types-with-multiple-usages.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/input/renamed-types-with-multiple-usages.cjs -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/input/require-usage.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/input/require-usage.cjs -------------------------------------------------------------------------------- /recipes/types-is-native-error/tests/input/types-with-multiple-usages.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/tests/input/types-with-multiple-usages.cjs -------------------------------------------------------------------------------- /recipes/types-is-native-error/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/types-is-native-error/workflow.yaml -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/README.md -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/codemod.yaml -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/package.json -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/src/workflow.ts -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/expected/alias.js: -------------------------------------------------------------------------------- 1 | Object.assign({}, {}); 2 | -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/expected/destructuring.js: -------------------------------------------------------------------------------- 1 | Object.assign({}, {}); 2 | -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/expected/dynamic.js: -------------------------------------------------------------------------------- 1 | Object.assign({}, {}); 2 | -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/expected/edge_cases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/expected/edge_cases.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/expected/import.js: -------------------------------------------------------------------------------- 1 | Object.assign({}, {}); 2 | -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/expected/mixed-ns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/expected/mixed-ns.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/expected/mixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/expected/mixed.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/expected/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/expected/require.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/input/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/input/alias.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/input/destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/input/destructuring.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/input/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/input/dynamic.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/input/edge_cases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/input/edge_cases.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/input/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/input/import.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/input/mixed-ns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/input/mixed-ns.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/input/mixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/input/mixed.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/tests/input/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/tests/input/require.js -------------------------------------------------------------------------------- /recipes/util-extend-to-object-assign/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-extend-to-object-assign/workflow.yaml -------------------------------------------------------------------------------- /recipes/util-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/README.md -------------------------------------------------------------------------------- /recipes/util-is/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/codemod.yaml -------------------------------------------------------------------------------- /recipes/util-is/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/package.json -------------------------------------------------------------------------------- /recipes/util-is/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/src/workflow.ts -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-1.js -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-10.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-10.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-11.js -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-12.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-12.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-13.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-13.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-2.js -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-3.js -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-4.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-5.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-6.js -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-7.js -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-8.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-8.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/expected/file-9.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/expected/file-9.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-1.js -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-10.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-10.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-11.js -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-12.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-12.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-13.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-13.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-2.js -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-3.js -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-4.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-5.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-5.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-6.js -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-7.js -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-8.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-8.mjs -------------------------------------------------------------------------------- /recipes/util-is/tests/input/file-9.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/tests/input/file-9.mjs -------------------------------------------------------------------------------- /recipes/util-is/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-is/workflow.yaml -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/README.md -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/codemod.yaml -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/package.json -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/src/workflow.ts -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/expected/esm-import.mjs: -------------------------------------------------------------------------------- 1 | 2 | console.log(new Date().toLocaleString(), "Server listening on port 3000"); 3 | -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/expected/esm-namespace-import.mjs: -------------------------------------------------------------------------------- 1 | 2 | console.log(new Date().toLocaleString(), "Debug message"); 3 | -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/expected/multiple-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/expected/multiple-arguments.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/expected/multiple-imports.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/expected/multiple-imports.cjs -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/expected/named-import-log-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/expected/named-import-log-only.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/expected/real-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/expected/real-scenario.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/expected/simple-scenario.js: -------------------------------------------------------------------------------- 1 | 2 | console.log(new Date().toLocaleString(), "Hello world"); 3 | -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/expected/with-interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/expected/with-interpolation.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/input/esm-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/input/esm-import.mjs -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/input/esm-namespace-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/input/esm-namespace-import.mjs -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/input/multiple-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/input/multiple-arguments.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/input/multiple-imports.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/input/multiple-imports.cjs -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/input/named-import-log-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/input/named-import-log-only.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/input/real-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/input/real-scenario.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/input/simple-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/input/simple-scenario.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/tests/input/with-interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/tests/input/with-interpolation.js -------------------------------------------------------------------------------- /recipes/util-log-to-console-log/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-log-to-console-log/workflow.yaml -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/README.md -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/codemod.yaml -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/package.json -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/src/workflow.ts -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/debug.js: -------------------------------------------------------------------------------- 1 | 2 | console.error("Hello world"); 3 | -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/error.js: -------------------------------------------------------------------------------- 1 | 2 | console.error("Hello world"); 3 | -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/esm-import.mjs: -------------------------------------------------------------------------------- 1 | 2 | console.log("Server listening on port 3000"); 3 | -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/esm-namespace-import.mjs: -------------------------------------------------------------------------------- 1 | 2 | console.log("Debug message"); 3 | -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/multiple-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/expected/multiple-arguments.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/multiple-imports.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/expected/multiple-imports.cjs -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/named-import-print-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/expected/named-import-print-only.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/print.js: -------------------------------------------------------------------------------- 1 | 2 | console.log("Hello world"); 3 | -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/puts.js: -------------------------------------------------------------------------------- 1 | 2 | console.log("Hello world"); 3 | -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/real-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/expected/real-scenario.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/simple-scenario.js: -------------------------------------------------------------------------------- 1 | 2 | console.log("Hello world"); 3 | -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/expected/with-interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/expected/with-interpolation.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/debug.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/error.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/esm-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/esm-import.mjs -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/esm-namespace-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/esm-namespace-import.mjs -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/multiple-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/multiple-arguments.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/multiple-imports.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/multiple-imports.cjs -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/named-import-print-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/named-import-print-only.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/print.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/puts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/puts.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/real-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/real-scenario.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/simple-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/simple-scenario.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/tests/input/with-interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/tests/input/with-interpolation.js -------------------------------------------------------------------------------- /recipes/util-print-to-console-log/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/util-print-to-console-log/workflow.yaml -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/README.md -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/codemod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/codemod.yaml -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/package.json -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/src/workflow.ts -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/assigned_bytesRead_variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/assigned_bytesRead_variable.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/deflate_finish_stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/deflate_finish_stats.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/destructured_createGzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/destructured_createGzip.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/dynamic_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/dynamic_import.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/esm_createGzip_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/esm_createGzip_import.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/gzip_end_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/gzip_end_event.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/let_var_streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/let_var_streams.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/track_stream_progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/track_stream_progress.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/expected/track_stream_progress_multiple_args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/expected/track_stream_progress_multiple_args.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/assigned_bytesRead_variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/assigned_bytesRead_variable.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/deflate_finish_stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/deflate_finish_stats.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/destructured_createGzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/destructured_createGzip.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/dynamic_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/dynamic_import.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/esm_createGzip_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/esm_createGzip_import.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/gzip_end_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/gzip_end_event.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/let_var_streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/let_var_streams.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/track_stream_progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/track_stream_progress.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/tests/input/track_stream_progress_multiple_args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/tests/input/track_stream_progress_multiple_args.js -------------------------------------------------------------------------------- /recipes/zlib-bytesread-to-byteswritten/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/recipes/zlib-bytesread-to-byteswritten/workflow.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/package.json -------------------------------------------------------------------------------- /utils/src/ast-grep/get-scope.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/get-scope.test.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/get-scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/get-scope.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/import-statement.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/import-statement.test.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/import-statement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/import-statement.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/package-json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/package-json.test.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/package-json.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/remove-binding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/remove-binding.test.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/remove-binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/remove-binding.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/remove-lines.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/remove-lines.test.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/remove-lines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/remove-lines.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/require-call.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/require-call.test.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/require-call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/require-call.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/resolve-binding-path.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/resolve-binding-path.test.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/resolve-binding-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/resolve-binding-path.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/update-binding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/update-binding.test.ts -------------------------------------------------------------------------------- /utils/src/ast-grep/update-binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/ast-grep/update-binding.ts -------------------------------------------------------------------------------- /utils/src/codemod-jssg-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/codemod-jssg-context.ts -------------------------------------------------------------------------------- /utils/src/logger.test.snap.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/logger.test.snap.cjs -------------------------------------------------------------------------------- /utils/src/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/logger.test.ts -------------------------------------------------------------------------------- /utils/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/logger.ts -------------------------------------------------------------------------------- /utils/src/snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/snapshots.ts -------------------------------------------------------------------------------- /utils/src/spawn-promisified.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/spawn-promisified.test.ts -------------------------------------------------------------------------------- /utils/src/spawn-promisified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/src/spawn-promisified.ts -------------------------------------------------------------------------------- /utils/types/jssg-context.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/userland-migrations/HEAD/utils/types/jssg-context.d.ts --------------------------------------------------------------------------------