style: Node Packages

Add the `node:` prefix to imports of node internal packages, making it easier to differentiate
This commit is contained in:
Marco Biedermann 2024-04-29 14:24:37 +02:00
parent daf8061cef
commit 2921e97eb9
No known key found for this signature in database
GPG key ID: 35FDF733DEED0D33
2 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
import * as fs from 'fs';
import * as https from 'https';
import * as path from 'path';
import * as fs from 'node:fs';
import * as https from 'node:https';
import * as path from 'node:path';
import * as exec from '@actions/exec';

View file

@ -1,7 +1,7 @@
import * as crypto from 'crypto';
import * as fs from 'fs';
import * as crypto from 'node:crypto';
import * as fs from 'node:fs';
import * as path from 'node:path';
import * as gpg from 'gpg';
import * as path from 'path';
import * as core from '@actions/core';
import {request} from 'undici';