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
+3 -3
View File
@@ -14,13 +14,13 @@
* limitations under the License.
*/
import os from 'os';
import os from 'node:os';
import fs from 'fs-extra';
import fetch from 'cross-fetch';
import handlebars from 'handlebars';
import killTree from 'tree-kill';
import { resolve as resolvePath, join as joinPath } from 'path';
import path from 'path';
import { resolve as resolvePath, join as joinPath } from 'node:path';
import path from 'node:path';
import { waitFor, print } from '../lib/helpers';