Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eslint-community/eslint-plugin-n
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9b5f2ec2882f1f96abd3fdb16582b2031b9a24fb
Choose a base ref
..
head repository: eslint-community/eslint-plugin-n
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 50f95c2e9550f4f0e2bb54ed6571c0e92b7416d4
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +2 −2 lib/unsupported-features/node-builtins-modules/module.js
  2. +2 −2 lib/unsupported-features/node-builtins-modules/worker_threads.js
4 changes: 2 additions & 2 deletions lib/unsupported-features/node-builtins-modules/module.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict"

const { CALL, READ } = require("@eslint-community/eslint-utils")
const { READ } = require("@eslint-community/eslint-utils")

/** @type {import('../types.js').SupportVersionTraceMap} */
const Module = {
@@ -18,7 +18,7 @@ const Module = {
},
},
enableCompileCache: { [READ]: { experimental: ["22.8.0"] } },
flushCompileCache: { [CALL]: { experimental: ["23.0.0", "22.10.0"] } },
flushCompileCache: { [READ]: { experimental: ["23.0.0", "22.10.0"] } },
getCompileCacheDir: { [READ]: { experimental: ["22.8.0"] } },
isBuiltin: { [READ]: { supported: ["18.6.0", "16.17.0"] } },
register: { [READ]: { experimental: ["20.6.0"] } },
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict"

const { CALL, READ } = require("@eslint-community/eslint-utils")
const { READ } = require("@eslint-community/eslint-utils")

/** @type {import('../types.js').SupportVersionTraceMap} */
const worker_threads = {
@@ -16,7 +16,7 @@ const worker_threads = {
supported: ["17.5.0", "16.15.0"],
},
},
markAsUncloneable: { [CALL]: { supported: ["23.0.0", "22.10.0"] } },
markAsUncloneable: { [READ]: { supported: ["23.0.0", "22.10.0"] } },
markAsUntransferable: { [READ]: { supported: ["14.5.0", "12.19.0"] } },
isMarkedAsUntransferable: { [READ]: { supported: ["21.0.0"] } },
moveMessagePortToContext: { [READ]: { supported: ["11.13.0"] } },