-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: DLT-2192 lsp-hover-provider (#563)
Signed-off-by: Julio Ortega <julio.ortega@dialpad.com>
- Loading branch information
1 parent
c29e044
commit 1bd875a
Showing
17 changed files
with
329 additions
and
110 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Create or open a `.vue` or a `.css` file to start testing the extension. | ||
|
||
- On a `.vue` file: | ||
- Type `<dt-|` to trigger Component completion. | ||
- Type `<dt-avatar | />` to trigger property completion. | ||
- Type `<dt-avatar size="|" />` to trigger values completion. | ||
|
||
- On a `.css` file: | ||
- Type `color: var(--dt-|)` to trigger token completion | ||
|
||
- If no completion is provided automatically (depends on your VSCode config), press `Ctrl + Space` to trigger the completions. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* eslint-disable no-template-curly-in-string */ | ||
const name = 'language-server'; | ||
const srcRoot = `packages/language-server/${name}`; | ||
|
||
/** | ||
* @type {import('semantic-release').GlobalConfig} | ||
*/ | ||
module.exports = { | ||
pkgRoot: srcRoot, | ||
tagFormat: name + '/v${version}', | ||
commitPaths: [`${srcRoot}/*`], | ||
plugins: [ | ||
['@semantic-release/commit-analyzer', { | ||
preset: 'angular', | ||
releaseRules: [ | ||
{ type: 'refactor', release: 'patch' }, | ||
], | ||
}], | ||
['@semantic-release/release-notes-generator', { | ||
config: '@dialpad/conventional-changelog-angular', | ||
}], | ||
['@dialpad/semantic-release-changelog-json', { | ||
changelogFile: `${srcRoot}/CHANGELOG.md`, | ||
changelogJsonFile: `${srcRoot}/CHANGELOG.json`, | ||
}], | ||
['@semantic-release/changelog', { changelogFile: `${srcRoot}/CHANGELOG.md` }], | ||
['@semantic-release/npm', { npmPublish: false }], | ||
['@semantic-release/git', { | ||
assets: [ | ||
`${srcRoot}/CHANGELOG.md`, | ||
`${srcRoot}/CHANGELOG.json`, | ||
`${srcRoot}/package.json`, | ||
], | ||
message: `chore(release): NO-JIRA ${name}` + | ||
'/v${nextRelease.version}\n\n${nextRelease.notes}', | ||
}], | ||
['@semantic-release/github', { | ||
successComment: false, | ||
failTitle: false, | ||
}], | ||
], | ||
branches: [ | ||
'staging', | ||
'next', | ||
{ | ||
name: 'beta', | ||
prerelease: true, | ||
}, | ||
{ | ||
name: 'alpha', | ||
prerelease: true, | ||
}, | ||
], | ||
}; |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.