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
+4 -2
View File
@@ -15,11 +15,13 @@
* limitations under the License.
*/
const path = require('path');
const path = require('node:path');
// Figure out whether we're running inside the backstage repo or as an installed dependency
/* eslint-disable-next-line no-restricted-syntax */
const isLocal = require('fs').existsSync(path.resolve(__dirname, '../src'));
const isLocal = require('node:fs').existsSync(
path.resolve(__dirname, '../src'),
);
if (!isLocal) {
require('..');
+2 -2
View File
@@ -14,10 +14,10 @@
* limitations under the License.
*/
import { relative as relativePath } from 'path';
import { relative as relativePath } from 'node:path';
import { OptionValues } from 'commander';
import { findPaths, run } from '@backstage/cli-common';
import { platform } from 'os';
import { platform } from 'node:os';
// eslint-disable-next-line no-restricted-syntax
const paths = findPaths(__dirname);