Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Branch vim windows install #456

Merged
merged 4 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
- ci - bugfix - Fix google-chrome unable to create screenshot because…
… user-data-dir is /dev/null.
  • Loading branch information
kaizhu256 committed Nov 22, 2023
commit dd3f5f5be884e2531858dee90b024c66e1a93077
2 changes: 1 addition & 1 deletion .ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ import moduleFs from "fs";
"type": "git",
"url": "https://github.com/jslint-org/jslint.git"
},
"version": "2023.10.24"
"version": "2023.11.1"
}, undefined, 4)
}
].map(async function ({
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
- jslint - add new warning requiring paren around plus-separated concatenations.
- jslint - try to improve parser to be able to parse jquery.js without stopping.

# v2023.11.1-beta
- ci - bugfix - Fix google-chrome unable to create screenshot because user-data-dir is /dev/null.

# v2023.10.24
- jslint - bugfix - Update file jslint_wrapper_vim.vim to fix broken vim-link when linting shell-files.
- ci - add custom-shell-ci hooks to script jslint_ci.sh:
Expand Down
2 changes: 1 addition & 1 deletion jslint.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ let jslint_charset_ascii = (
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
);
let jslint_edition = "v2023.10.24";
let jslint_edition = "v2023.11.1-beta";
let jslint_export; // The jslint object to be exported.
let jslint_fudge = 1; // Fudge starting line and starting
// ... column to 1.
Expand Down
3 changes: 2 additions & 1 deletion jslint_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ shBrowserScreenshot() {(set -e
# window-size $2
node --input-type=module --eval '
import moduleChildProcess from "child_process";
import moduleOs from "os";
import modulePath from "path";
import moduleUrl from "url";
// init debugInline
Expand Down Expand Up @@ -257,7 +258,7 @@ import moduleUrl from "url";
"--incognito",
"--screenshot",
"--timeout=30000",
"--user-data-dir=/dev/null",
"--user-data-dir=" + moduleOs.tmpdir(),
"--window-size=800x600",
"-screenshot=" + file,
(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
"shCiArtifactUpload": 1,
"shCiPublishNpm": 1,
"type": "module",
"version": "2023.10.24"
"version": "2023.11.1-beta"
}