This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src/test.ts:10:39 - error TS18049: 'item' is possibly 'null' or 'undefined'. | |
10 strings.forEach((item) => console.log(item.id, item.label)) | |
~~~~ | |
src/test.ts:10:48 - error TS18049: 'item' is possibly 'null' or 'undefined'. | |
10 strings.forEach((item) => console.log(item.id, item.label)) | |
~~~~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Examples: | |
# squarify_white 2023-10-11.jpg | |
# 4x5ify_white *.heic | |
4x5ify() { | |
for file in "${@:3}"; do | |
if [[ "${file}" == *-4x5-* ]]; then | |
continue | |
fi | |
if [[ $(vipsheader -f height ${file}) != 2580 ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Build vue devtools for Firefox. | |
# Check out the repository and run this script, then install the XPI file. | |
# https://github.com/vuejs/devtools | |
# You may also have to set `xpinstall.signatures.required` to `false` in `about:config`. | |
cd packages/firefox-extension | |
git checkout manifest.json | |
cat manifest.json | jq --argjson browser_specific_settings '{"gecko": {"id": "[email protected]", "strict_min_version": "58.0"}}' '. + {browser_specific_settings: $browser_specific_settings}' > tmp.json |
OlderNewer