Skip to content

Commit f14be19

Browse files
authored
Merge pull request #423 from kaizhu256/branch-v2023.1.29
# v2023.1.29
2 parents 090a577 + 14e8fed commit f14be19

File tree

6 files changed

+12
-14
lines changed

6 files changed

+12
-14
lines changed

.ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ import moduleFs from "fs";
432432
"type": "git",
433433
"url": "https://github.com/jslint-org/jslint.git"
434434
},
435-
"version": "2023.1.1"
435+
"version": "2023.1.29"
436436
}, undefined, 4)
437437
}
438438
].map(async function ({

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
- jslint - try to improve parser to be able to parse jquery.js without stopping.
1010
- jslint - unify analysis of variable-assignment/function-parameters into one function
1111

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
1314
- ci - bugfix - fix ci-shell-function shGithubFileUpload unable to upload new asset
1415
- ci - auto-create asset_image_logo_512.png from asset_image_logo_512.html
1516
- bugfix - fix shell-function shGithubCheckoutRemote not able to checkout trusted-files in non-alpha branches

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Douglas Crockford <[email protected]>
33

44

55
# 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) |
77
|--:|:--:|:--:|:--:|
88
| 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) |
99
| 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) |

jslint.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ let jslint_charset_ascii = (
165165
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
166166
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
167167
);
168-
let jslint_edition = "v2023.1.1-beta";
168+
let jslint_edition = "v2023.1.29";
169169
let jslint_export; // The jslint object to be exported.
170170
let jslint_fudge = 1; // Fudge starting line and starting
171171
// ... column to 1.

jslint_ci.sh

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3310,16 +3310,13 @@ shCiMain() {(set -e
33103310
then
33113311
return
33123312
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+
;;
33163318
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
33233320
;;
33243321
esac
33253322
# run "$@"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
"shCiArtifactUpload": 1,
3636
"shCiNpmPublish": 1,
3737
"type": "module",
38-
"version": "2023.1.1-beta"
38+
"version": "2023.1.29"
3939
}

0 commit comments

Comments
 (0)