File tree Expand file tree Collapse file tree 6 files changed +12
-14
lines changed Expand file tree Collapse file tree 6 files changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -432,7 +432,7 @@ import moduleFs from "fs";
432
432
"type": "git",
433
433
"url": "https://github.com/jslint-org/jslint.git"
434
434
},
435
- "version": "2023.1.1 "
435
+ "version": "2023.1.29 "
436
436
}, undefined, 4)
437
437
}
438
438
].map(async function ({
Original file line number Diff line number Diff line change 9
9
- jslint - try to improve parser to be able to parse jquery.js without stopping.
10
10
- jslint - unify analysis of variable-assignment/function-parameters into one function
11
11
12
- # v2023.1.1-beta
12
+ # v2023.1.29
13
+ - ci - in windows-ci-env, alias node=node.exe instead of using winpty for pipes
13
14
- ci - bugfix - fix ci-shell-function shGithubFileUpload unable to upload new asset
14
15
- ci - auto-create asset_image_logo_512.png from asset_image_logo_512.html
15
16
- bugfix - fix shell-function shGithubCheckoutRemote not able to checkout trusted-files in non-alpha branches
Original file line number Diff line number Diff line change 3
3
4
4
5
5
# Status
6
- | Branch | [ master<br >(v2022.11.20 )] ( https://github.com/jslint-org/jslint/tree/master ) | [ beta<br >(Web Demo)] ( https://github.com/jslint-org/jslint/tree/beta ) | [ alpha<br >(Development)] ( https://github.com/jslint-org/jslint/tree/alpha ) |
6
+ | Branch | [ master<br >(v2023.1.29 )] ( https://github.com/jslint-org/jslint/tree/master ) | [ beta<br >(Web Demo)] ( https://github.com/jslint-org/jslint/tree/beta ) | [ alpha<br >(Development)] ( https://github.com/jslint-org/jslint/tree/alpha ) |
7
7
| --:| :--:| :--:| :--:|
8
8
| CI | [ ![ ci] ( https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=master )] ( https://github.com/jslint-org/jslint/actions?query=branch%3Amaster ) | [ ![ ci] ( https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=beta )] ( https://github.com/jslint-org/jslint/actions?query=branch%3Abeta ) | [ ![ ci] ( https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=alpha )] ( https://github.com/jslint-org/jslint/actions?query=branch%3Aalpha ) |
9
9
| Coverage | [ ![ coverage] ( https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/coverage_badge.svg )] ( https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/index.html ) | [ ![ coverage] ( https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/coverage_badge.svg )] ( https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/index.html ) | [ ![ coverage] ( https://jslint-org.github.io/jslint/branch-alpha/.artifact/coverage/coverage_badge.svg )] ( https://jslint-org.github.io/jslint/branch-alpha/.artifact/coverage/index.html ) |
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ let jslint_charset_ascii = (
165
165
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
166
166
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
167
167
) ;
168
- let jslint_edition = "v2023.1.1-beta " ;
168
+ let jslint_edition = "v2023.1.29 " ;
169
169
let jslint_export ; // The jslint object to be exported.
170
170
let jslint_fudge = 1 ; // Fudge starting line and starting
171
171
// ... column to 1.
Original file line number Diff line number Diff line change @@ -3310,16 +3310,13 @@ shCiMain() {(set -e
3310
3310
then
3311
3311
return
3312
3312
fi
3313
- # run "$@" with winpty
3314
- local CI_UNAME=" ${CI_UNAME:- $(uname)} "
3315
- case " $CI_UNAME " in
3313
+ # alias node.exe
3314
+ case " $( uname) " in
3315
+ MINGW* )
3316
+ if (! alias node & > /dev/null); then alias node=node.exe; fi
3317
+ ;;
3316
3318
MSYS* )
3317
- if [ ! " $CI_WINPTY " ] && [ " $1 " != shHttpFileServer ]
3318
- then
3319
- export CI_WINPTY=1
3320
- winpty -Xallow-non-tty -Xplain sh " $0 " " $@ "
3321
- return
3322
- fi
3319
+ if (! alias node & > /dev/null); then alias node=node.exe; fi
3323
3320
;;
3324
3321
esac
3325
3322
# run "$@"
Original file line number Diff line number Diff line change 35
35
"shCiArtifactUpload" : 1 ,
36
36
"shCiNpmPublish" : 1 ,
37
37
"type" : " module" ,
38
- "version" : " 2023.1.1-beta "
38
+ "version" : " 2023.1.29 "
39
39
}
You can’t perform that action at this time.
0 commit comments