mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-27 08:32:30 +03:00
31 lines
1.1 KiB
CoffeeScript
31 lines
1.1 KiB
CoffeeScript
{Document, Point, Range, Site} = require 'telepath'
|
|
|
|
module.exports =
|
|
_: require 'underscore-plus'
|
|
BufferedNodeProcess: require '../src/buffered-node-process'
|
|
BufferedProcess: require '../src/buffered-process'
|
|
Directory: require '../src/directory'
|
|
Document: Document
|
|
File: require '../src/file'
|
|
fs: require 'fs-plus'
|
|
Git: require '../src/git'
|
|
Point: Point
|
|
Range: Range
|
|
Site: Site
|
|
|
|
# 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.Editor = require '../src/editor'
|
|
module.exports.pathForRepositoryUrl = require('../src/project').pathForRepositoryUrl
|
|
module.exports.RootView = require '../src/root-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
|