File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ const copyFile = {
51
51
fs . renameSync ( source , target ) ;
52
52
else
53
53
fs . copyFileSync ( source , target ) ;
54
- const osEol = ( text ) => text . replace ( / \r ? \n / g, EOL ) ;
54
+ const platformEol = ( text ) => text . replace ( / \r ? \n / g, EOL ) ;
55
55
if ( settings . platformEol )
56
- fs . writeFileSync ( target , osEol ( fs . readFileSync ( target , 'utf-8' ) ) ) ;
56
+ fs . writeFileSync ( target , platformEol ( fs . readFileSync ( target , 'utf-8' ) ) ) ;
57
57
} ;
58
58
if ( ! skip )
59
59
createTarget ( ) ;
Original file line number Diff line number Diff line change 58
58
"test" : " mocha spec/*.spec.js"
59
59
},
60
60
"dependencies" : {
61
- "chalk" : " ~5.4 " ,
61
+ "chalk" : " ~5.6 " ,
62
62
"cli-argv-util" : " ~1.3" ,
63
- "dna-engine" : " ~3.2 " ,
63
+ "dna-engine" : " ~3.3 " ,
64
64
"fancy-log" : " ~2.0" ,
65
65
"slash" : " ~5.1"
66
66
},
67
67
"devDependencies" : {
68
- "@eslint/js" : " ~9.31 " ,
68
+ "@eslint/js" : " ~9.34 " ,
69
69
"@types/fancy-log" : " ~2.0" ,
70
- "@types/node" : " ~24.0 " ,
70
+ "@types/node" : " ~24.3 " ,
71
71
"add-dist-header" : " ~1.5" ,
72
72
"assert-deep-strict-equal" : " ~1.2" ,
73
- "eslint" : " ~9.31 " ,
73
+ "eslint" : " ~9.34 " ,
74
74
"jshint" : " ~2.13" ,
75
75
"mocha" : " ~11.7" ,
76
76
"rimraf" : " ~6.0" ,
77
77
"run-scripts-util" : " ~1.3" ,
78
- "typescript" : " ~5.8 " ,
79
- "typescript-eslint" : " ~8.36 "
78
+ "typescript" : " ~5.9 " ,
79
+ "typescript-eslint" : " ~8.40 "
80
80
}
81
81
}
Original file line number Diff line number Diff line change @@ -74,9 +74,9 @@ const copyFile = {
74
74
fs . renameSync ( source , target ) ;
75
75
else
76
76
fs . copyFileSync ( source , target ) ;
77
- const osEol = ( text : string ) => text . replace ( / \r ? \n / g, EOL ) ;
77
+ const platformEol = ( text : string ) => text . replace ( / \r ? \n / g, EOL ) ;
78
78
if ( settings . platformEol )
79
- fs . writeFileSync ( target , osEol ( fs . readFileSync ( target , 'utf-8' ) ) ) ;
79
+ fs . writeFileSync ( target , platformEol ( fs . readFileSync ( target , 'utf-8' ) ) ) ;
80
80
} ;
81
81
if ( ! skip )
82
82
createTarget ( ) ;
You can’t perform that action at this time.
0 commit comments