require the use of node prefix on native imports

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2026-01-25 13:47:32 +01:00
parent 4ad63b8d9f
commit 7455dae884
444 changed files with 749 additions and 634 deletions
@@ -15,7 +15,7 @@
*/
import { stringifyError } from '@backstage/errors';
import { randomBytes } from 'crypto';
import { randomBytes } from 'node:crypto';
import knexFactory, { Knex } from 'knex';
import { v4 as uuid } from 'uuid';
import yn from 'yn';
@@ -15,7 +15,7 @@
*/
import { stringifyError } from '@backstage/errors';
import { randomBytes } from 'crypto';
import { randomBytes } from 'node:crypto';
import knexFactory, { Knex } from 'knex';
import { parse as parsePgConnectionString } from 'pg-connection-string';
import { v4 as uuid } from 'uuid';
@@ -15,8 +15,8 @@
*/
import fs from 'fs-extra';
import os from 'os';
import { join as joinPath, relative as relativePath } from 'path';
import os from 'node:os';
import { join as joinPath, relative as relativePath } from 'node:path';
import { createMockDirectory, MockDirectory } from './MockDirectory';
describe('createMockDirectory', () => {
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import os from 'os';
import os from 'node:os';
import { isChildPath } from '@backstage/backend-plugin-api';
import fs from 'fs-extra';
import textextensions from 'text-extensions';
@@ -26,7 +26,7 @@ import {
relative as relativePath,
win32,
posix,
} from 'path';
} from 'node:path';
const tmpdirMarker = Symbol('os-tmpdir-mock');
@@ -21,7 +21,7 @@ import {
import { startTestBackend } from '../wiring';
import { MockSchedulerService } from './MockSchedulerService';
import { mockServices } from './mockServices';
import { setTimeout } from 'timers/promises';
import { setTimeout } from 'node:timers/promises';
const baseOpts = {
frequency: { seconds: 10 },