Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion recipes/http-classes-with-new/codemod.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
schema_version: "1.0"
name: "@nodejs/http-classes-with-new"
version: "1.0.1"
version: "1.0.2"
description: "Handle DEDEP0195: Instantiating node:http classes without new"
author: Usman S.
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion recipes/http-classes-with-new/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodejs/http-classes-with-new",
"version": "1.0.1",
"version": "1.0.2",
"description": "Handle DEP0195: Instantiating node:http classes without new.",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion recipes/process-main-module/codemod.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
schema_version: "1.0"
name: "@nodejs/process-main-module"
version: "1.0.2"
version: "1.0.3"
description: Handle DEP0138 via transforming `process.mainModule` to `require.main`.
author: Bruno Rodrigues
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion recipes/rmdir/codemod.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
schema_version: "1.0"
name: "@nodejs/rmdir"
version: "1.1.1"
version: "1.1.2"
description: Handle DEP0147 via transforming `fs.rmdir` to `fs.rm`
author: Augustin Mauroy
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion recipes/rmdir/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodejs/rmdir",
"version": "1.1.1",
"version": "1.1.2",
"description": "Handle DEP0147 via transforming `fs.rmdir` to `fs.rm` with the appropriate options.",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion recipes/tmpdir-to-tmpdir/codemod.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
schema_version: "1.0"
name: "@nodejs/tmpDir-to-tmpdir"
version: "1.0.1"
version: "1.0.2"
description: Handle DEP0022 via transforming `tmpDir` to `tmpdir`.
author: nekojanai (Jana)
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion recipes/tmpdir-to-tmpdir/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodejs/tmpdir-to-tmpdir",
"version": "1.0.1",
"version": "1.0.2",
"description": "Handle DEP0022 via transforming `tmpDir` to `tmpdir`.",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion recipes/util-log-to-console-log/codemod.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
schema_version: "1.0"
name: "@nodejs/util-log-to-console-log"
version: "1.0.1"
version: "1.0.2"
description: Handle DEP0059 via transforming `log.util()` to `console.log()`.
author: Bruno Rodrigues
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion recipes/util-log-to-console-log/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodejs/util-log-to-console-log",
"version": "1.0.1",
"version": "1.0.2",
"description": "Handle DEP0059 via transforming `log.util()` to `console.log()`",
"type": "module",
"scripts": {
Expand Down
Loading