Skip to content

Commit

Permalink
project renamed as blits-vscode-extension
Browse files Browse the repository at this point in the history
- project renamed as blits-vscode-extension
  • Loading branch information
uguraslan authored Oct 4, 2023
1 parent 7251357 commit a6b4a08
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
- name: Create GitHub Pre Release and Upload VSIX
run: |
gh auth login --with-token <<< "${{ secrets.GITHUB_TOKEN }}"
gh release create v${{ env.EXTENSION_VERSION }} ./${{ env.EXTENSION_NAME }}.v${{ env.EXTENSION_VERSION }}.vsix --prerelease -t "bolt-vscode v${{ env.EXTENSION_VERSION }}" -n "Version ${{ env.EXTENSION_VERSION }} of ${{ env.EXTENSION_NAME }}"
gh release create v${{ env.EXTENSION_VERSION }} ./${{ env.EXTENSION_NAME }}.v${{ env.EXTENSION_VERSION }}.vsix --prerelease -t "blits-vscode v${{ env.EXTENSION_VERSION }}" -n "Version ${{ env.EXTENSION_VERSION }} of ${{ env.EXTENSION_NAME }}"
8 changes: 4 additions & 4 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bolt-vscode",
"displayName": "bolt-vscode",
"description": "Visual Studio Code extension for Bolt",
"name": "blits-vscode",
"displayName": "blits-vscode",
"description": "Visual Studio Code extension for Blits",
"version": "0.3.0",
"engines": {
"vscode": "^1.81.0"
Expand All @@ -28,7 +28,7 @@
"injectTo": [
"source.js"
],
"scopeName": "inline.custom-bolt-html",
"scopeName": "inline.custom-blits-html",
"path": "./syntaxes/embedded-html.json"
}
],
Expand All @@ -48,7 +48,7 @@
{
"key": "ctrl+/",
"mac": "cmd+/",
"command": "bolt-vscode.commentCommand",
"command": "blits-vscode.commentCommand",
"when": "editorTextFocus && editorLangId == 'javascript'"
}
]
Expand Down
2 changes: 1 addition & 1 deletion src/commands/commentCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const templateHelper = require('../helpers/template')
const parse = require('../parsers')

module.exports = vscode.commands.registerCommand(
'bolt-vscode.commentCommand',
'blits-vscode.commentCommand',
async () => {
const editor = vscode.window.activeTextEditor

Expand Down
2 changes: 1 addition & 1 deletion src/completionProviders/templateAttributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = vscode.languages.registerCompletionItemProvider(

// fixme: in some cases the content of a tag can be multiline
if (tagName) {
// hardcoded for now, Bolt will provide a map for rendererer props
// hardcoded for now, Blits will provide a map for rendererer props
if (tagName === 'Element') {
return await completionItems.coreProps(
tagName,
Expand Down
4 changes: 2 additions & 2 deletions src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ function activate(context) {
// comment command wrapper for template section
context.subscriptions.push(commands.commentCommand)

console.log('bolt-template-highlighter has been activated.')
console.log('blits-template-highlighter has been activated.')
}

function deactivate() {
console.log('bolt-template-highlighter has been deactivated.')
console.log('blits-template-highlighter has been deactivated.')
}

module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/embedded-html.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
]
}
],
"scopeName": "inline.custom-bolt-html"
"scopeName": "inline.custom-blits-html"
}

0 comments on commit a6b4a08

Please sign in to comment.