Skip to content

Commit

Permalink
fix: move plugin-management file as it is not a mixin anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Dec 26, 2020
1 parent 60bd9a8 commit dac13bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import MinimapElement from './minimap-element'
import Minimap from './minimap'
import MinimapPluginGeneratorElement from './minimap-plugin-generator-element'
import config from './config.json'
import { deactivateAllPlugins } from './mixins/plugin-management'
import { deactivateAllPlugins } from './plugin-management'

exports.config = config
export * from './mixins/plugin-management'
export * from './plugin-management'
export { default as Minimap } from './minimap'

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

import { CompositeDisposable } from 'atom'
import { emitter, getConfigSchema } from '../main'
import { emitter, getConfigSchema } from './main'

/**
* Provides methods to manage minimap plugins.
Expand Down

0 comments on commit dac13bd

Please sign in to comment.