Skip to content

Commit d1130d3

Browse files
committed
# v2024.3.26
- ci - Add shell-functions shGitPullrequestCleanup(), shGitPullrequest() to automatically cleanup or create-and-push github-pull-commit to origin/alpha. - jslint - Allow destructuring-assignment after function-definition. - ci - Replace npm-package used to auto-build vscode-plugin, vsce to @vscode/vsce. - test - Update test-function jstestDescribe() to wait awhile for imports to initialize before running tests. - ci - Fix tmpdir in shell-function shBrowserScreenshot(). - vim - Allow installing vim-plugin to any directory, instead of hardcoded to ~/.vim/. - ci - Update github-ci for actions/cache, actions/setup-python from nodejs v16 to nodejs v20. - ci - Update shell-function shRollupFetch() to fix blank date-committed. - ci - bugfix - Fix google-chrome unable to create screenshot because user-data-dir is /dev/null.
1 parent a9b83f2 commit d1130d3

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ import moduleFs from "fs";
441441
"type": "git",
442442
"url": "https://github.com/jslint-org/jslint.git"
443443
},
444-
"version": "2024.3.1"
444+
"version": "2024.3.26"
445445
}, undefined, 4)
446446
}
447447
].map(async function ({

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- jslint - add new warning requiring paren around plus-separated concatenations.
88
- jslint - try to improve parser to be able to parse jquery.js without stopping.
99

10-
# v2024.3.1-beta
10+
# v2024.3.26
1111
- ci - Add shell-functions shGitPullrequestCleanup(), shGitPullrequest() to automatically cleanup or create-and-push github-pull-commit to origin/alpha.
1212
- jslint - Allow destructuring-assignment after function-definition.
1313
- ci - Replace npm-package used to auto-build vscode-plugin, vsce to @vscode/vsce.

README.md

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

44

55
# Status
6-
| Branch | [master<br>(v2023.10.24)](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>(v2024.3.26)](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) |
@@ -963,7 +963,7 @@ this PR will additionally:
963963
- $ `git push upstream alpha -f`
964964
- verify ci-success for upstream-branch-alpha
965965
- https://github.com/jslint-org/jslint/actions/workflows/ci.yml
966-
- goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2023.10.24
966+
- goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2024.3.26
967967
- click `Create pull request`
968968
- input `Add a title` with: `# v20yy.mm.dd`
969969
- input `Add a description` with:

jslint.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ let jslint_charset_ascii = (
163163
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
164164
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
165165
);
166-
let jslint_edition = "v2024.3.1-beta";
166+
let jslint_edition = "v2024.3.26";
167167
let jslint_export; // The jslint object to be exported.
168168
let jslint_fudge = 1; // Fudge starting line and starting
169169
// ... column to 1.

jslint_ci.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,8 @@ shCiBase() {(set -e
421421
# # this function will run custom-code to lint files
422422
# )}
423423
export GITHUB_BRANCH0="$(git rev-parse --abbrev-ref HEAD)"
424+
# Auto-correct common errors in package.json.
425+
npm pkg fix
424426
# validate package.json.fileCount
425427
node --input-type=module --eval '
426428
import moduleFs from "fs";

package.json

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

0 commit comments

Comments
 (0)