Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
15 changes: 13 additions & 2 deletions .github/workflows/guides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,22 @@ jobs:

cd .publish
git init
git remote add origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git"

if git fetch origin metadata 2>/dev/null; then
git checkout origin/metadata -- guides.json 2>/dev/null || true
fi

if [ -f guides.json ] && diff -q guides.json ../guides.json > /dev/null 2>&1; then
echo "Data unchanged, skipping publish"
exit 0
fi

cp ../guides.json guides.json

git checkout --orphan metadata
git add -A
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git commit -m "Update guides.json"

git remote add origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git"
git push -f origin metadata
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## v1.2.1 <sub>(May 09, 2026)</sub>

### Added
- Added comment highlighting to `$c[]`
- Added quick pick options for opening extension settings via command
- Added resolved package names to extension logs

## v1.2.0 <sub>(April 16, 2026)</sub>

### Added
Expand Down
7 changes: 3 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";
import typescriptEslint from "@typescript-eslint/eslint-plugin"
import tsParser from "@typescript-eslint/parser"

export default [{
files: ["**/*.ts"],
Expand All @@ -20,7 +20,6 @@ export default [{
format: ["camelCase", "PascalCase"],
}],

eqeqeq: "warn",
"no-throw-literal": "warn"
},
}];
}]
2 changes: 2 additions & 0 deletions out/autocompletion.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion out/autocompletion.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 44 additions & 5 deletions out/commands.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading