Skip to content

Commit

Permalink
Merge pull request #7 from aadarshadhakalg/fix_extension_dependencies
Browse files Browse the repository at this point in the history
Fix dependencies or extension does not activate
  • Loading branch information
aadarshadhakalg committed Nov 14, 2020
2 parents 13855de + dca4174 commit cbf3140
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 420 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.vsix
dist
dist
yarn.error.log
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@

All notable changes to the "adsnippets" extension will be documented in this file.

## [0.0.8]

- Fix build

## [0.0.7]

- Remove imports from dart snippets
- Fix routes snippet
- Follow component selector when click on it (component must be open in your current workspace)
- Follow template and styles url when click on it


## [0.0.6]

- rename `adcomp` to `ad-comp`
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "adsnippets",
"displayName": "Angular Dart",
"description": "A simple Angular Dart extension. Generate boilerplate code and more",
"version": "0.0.7",
"version": "0.0.8",
"publisher": "aadarshadhakalg",
"repository": {
"type": "git",
Expand All @@ -22,7 +22,8 @@
"Snippets"
],
"contributes": {
"snippets": [{
"snippets": [
{
"language": "dart",
"path": "./snippets/dart-snippets.code-snippets"
},
Expand All @@ -48,10 +49,13 @@
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"dependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^14.14.6",
"glob": "^7.1.6"
},
"devDependencies": {
"typescript": "^4.0.5",
"vscode": "^1.1.37"
}
}
}
Loading

0 comments on commit cbf3140

Please sign in to comment.