refactor: use node scheme imports in scripts (#38846)
* refactor: use node scheme imports in script * refactor: use node scheme imports in build
This commit is contained in:
parent
395b608dd5
commit
abec9ead06
40 changed files with 105 additions and 89 deletions
|
@ -6,11 +6,11 @@ const args = require('minimist')(process.argv.slice(2), {
|
|||
});
|
||||
const ciReleaseBuild = require('./ci-release-build');
|
||||
const { Octokit } = require('@octokit/rest');
|
||||
const { execSync } = require('child_process');
|
||||
const { execSync } = require('node:child_process');
|
||||
const { GitProcess } = require('dugite');
|
||||
|
||||
const path = require('path');
|
||||
const readline = require('readline');
|
||||
const path = require('node:path');
|
||||
const readline = require('node:readline');
|
||||
const releaseNotesGenerator = require('./notes/index.js');
|
||||
const { getCurrentBranch, ELECTRON_DIR } = require('../lib/utils.js');
|
||||
const bumpType = args._[0];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue