File tree 2 files changed +17
-6
lines changed
2 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"root" : true ,
3
3
4
- "extends" : " ./.eslintrc-node.json"
4
+ "extends" : " ./.eslintrc-node.json" ,
5
+
6
+ "overrides" : [
7
+ {
8
+ "files" : [" **/*.mjs" ],
9
+ "parserOptions" : {
10
+ "sourceType" : " module"
11
+ }
12
+ }
13
+ ]
5
14
}
Original file line number Diff line number Diff line change 9
9
var dryrun = false ,
10
10
skipRemote = false ;
11
11
12
- var fs = require ( "fs" ) ,
13
- child = require ( "child_process" ) ,
14
- path = require ( "path" ) ,
15
- chalk = require ( "chalk" ) ,
16
- { prompt } = require ( "enquirer" ) ;
12
+ import fs from "fs" ;
13
+ import child from "child_process" ;
14
+ import path from "path" ;
15
+ import chalk from "chalk" ;
16
+ import enquirer from "enquirer" ;
17
17
18
18
var releaseVersion ,
19
19
nextVersion ,
20
20
isBeta ,
21
21
pkg ,
22
22
23
+ prompt = enquirer . prompt ,
24
+
23
25
repoURL = "git@github.com:jquery/jquery-migrate.git" ,
24
26
branch = "main" ,
25
27
You can’t perform that action at this time.
0 commit comments