mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2025-01-06 06:28:33 +03:00
29 lines
1.0 KiB
CoffeeScript
29 lines
1.0 KiB
CoffeeScript
{Point, Range} = require 'text-buffer'
|
|
|
|
module.exports =
|
|
_: require 'underscore-plus'
|
|
BufferedNodeProcess: require '../src/buffered-node-process'
|
|
BufferedProcess: require '../src/buffered-process'
|
|
Directory: require '../src/directory'
|
|
File: require '../src/file'
|
|
fs: require 'fs-plus'
|
|
Git: require '../src/git'
|
|
ConfigObserver: require '../src/config-observer'
|
|
Point: Point
|
|
Range: Range
|
|
|
|
# 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
|
|
{$, $$, $$$, View} = require '../src/space-pen-extensions'
|
|
|
|
module.exports.$ = $
|
|
module.exports.$$ = $$
|
|
module.exports.$$$ = $$$
|
|
module.exports.EditorView = require '../src/editor-view'
|
|
module.exports.WorkspaceView = require '../src/workspace-view'
|
|
module.exports.SelectList = require '../src/select-list'
|
|
module.exports.ScrollView = require '../src/scroll-view'
|
|
module.exports.Task = require '../src/task'
|
|
module.exports.View = View
|