Skip to content

Commit

Permalink
Merge pull request #40 from atom-ide-community/atom-ide-base
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Oct 5, 2020
2 parents ec7413c + af36297 commit 28784b8
Show file tree
Hide file tree
Showing 4 changed files with 624 additions and 575 deletions.
4 changes: 2 additions & 2 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import { CompositeDisposable } from "atom"
import { install as installPackageDependencies } from "atom-package-deps"
import { goToDefinition } from "./goToDefinition"
import createProviderRegistry from "./providerRegistry"
import { ProviderRegistry } from "atom-ide-base/commons-atom/ProviderRegistry"
import { ClickProvider } from "./clickProvider"

const providerRegistry = createProviderRegistry()
const providerRegistry = new ProviderRegistry() // <DefinitionsProvider>
const clickProvider = new ClickProvider({
providerRegistry,
})
Expand Down
35 changes: 0 additions & 35 deletions lib/providerRegistry.js

This file was deleted.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,17 @@
"bump": "ncu -u -x coffeescript"
},
"dependencies": {
"atom-ide-base": "^1.8.0",
"atom-languageclient": "^0.9.9",
"atom-package-deps": "^6.0.0"
},
"devDependencies": {
"@types/atom": "^1.40.4",
"@types/node": "^14.0.24",
"prettier": "^2.0.5",
"eslint": "7.5.0",
"eslint-config-atomic": "^1.3.0",
"npm-check-updates": "7.0.2"
"@types/node": "^14.11.2",
"prettier": "^2.1.2",
"eslint": "7.10.0",
"eslint-config-atomic": "^1.5.0",
"npm-check-updates": "9.0.3"
},
"activationHooks": [
"core:loaded-shell-environment"
Expand Down
Loading

0 comments on commit 28784b8

Please sign in to comment.