2014-01-04 04:42:11 +04:00
|
|
|
{Point, Range} = require 'text-buffer'
|
2013-10-15 21:22:11 +04:00
|
|
|
|
2013-09-17 21:30:43 +04:00
|
|
|
module.exports =
|
2013-09-18 23:13:56 +04:00
|
|
|
BufferedNodeProcess: require '../src/buffered-node-process'
|
2013-09-19 22:33:24 +04:00
|
|
|
BufferedProcess: require '../src/buffered-process'
|
2013-09-18 22:29:25 +04:00
|
|
|
Git: require '../src/git'
|
2013-09-19 00:09:58 +04:00
|
|
|
Point: Point
|
|
|
|
Range: Range
|
2013-09-18 23:52:19 +04:00
|
|
|
|
|
|
|
# The following classes can't be used from a Task handler and should therefore
|
|
|
|
# only be exported when not running as a child node process
|
|
|
|
unless process.env.ATOM_SHELL_INTERNAL_RUN_AS_NODE
|
2013-10-16 04:52:20 +04:00
|
|
|
{$, $$, $$$, View} = require '../src/space-pen-extensions'
|
|
|
|
|
|
|
|
module.exports.$ = $
|
|
|
|
module.exports.$$ = $$
|
|
|
|
module.exports.$$$ = $$$
|
2014-07-31 02:41:21 +04:00
|
|
|
module.exports.EditorView = require '../src/editor-view'
|
2013-10-16 04:52:20 +04:00
|
|
|
module.exports.ScrollView = require '../src/scroll-view'
|
2014-02-01 03:22:48 +04:00
|
|
|
module.exports.SelectListView = require '../src/select-list-view'
|
2013-09-18 23:52:19 +04:00
|
|
|
module.exports.Task = require '../src/task'
|
2013-10-16 04:52:20 +04:00
|
|
|
module.exports.View = View
|
2014-02-01 03:22:48 +04:00
|
|
|
module.exports.WorkspaceView = require '../src/workspace-view'
|
2014-03-02 07:43:01 +04:00
|
|
|
module.exports.Workspace = require '../src/workspace'
|
2014-07-27 04:49:51 +04:00
|
|
|
module.exports.React = require 'react-atom-fork'
|
|
|
|
module.exports.Reactionary = require 'reactionary-atom-fork'
|