Skip to content

Commit

Permalink
fix: missing dependencies installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Belar committed Mar 28, 2019
1 parent c54f1e4 commit c1fdd16
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
3 changes: 3 additions & 0 deletions lib/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use babel';

import { CompositeDisposable } from 'atom';
import { install as installPackageDependencies } from 'atom-package-deps';
import goToDefinition from './goToDefinition';
import createProviderRegistry from './providerRegistry';
import { ClickProvider } from './clickProvider';
Expand All @@ -21,6 +22,8 @@ function package() {
goToDefinition(providerRegistry),
})
);

installPackageDependencies('atom-ide-definitions');
}

function deactivate() {
Expand Down
39 changes: 37 additions & 2 deletions package-lock.json

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

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-package-deps": "^5.0.0",
"atom-languageclient": "^0.9.9"
},
"devDependencies": {
Expand Down Expand Up @@ -41,6 +42,9 @@
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"package-deps": [
"hyperclick"
],
"consumedServices": {
"definitions": {
"versions": {
Expand Down

0 comments on commit c1fdd16

Please sign in to comment.