-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexports.js
More file actions
23 lines (22 loc) · 1.09 KB
/
exports.js
File metadata and controls
23 lines (22 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
exports.path = require('path')
exports.APP_DIR = exports.path.resolve(__dirname, 'javascript')
exports.entry = {
MediumEditorPack: exports.APP_DIR + '/EntryForm/MediumEditorPack.js',
EntryList: exports.APP_DIR + '/EntryList/index.jsx',
AuthorList: exports.APP_DIR + '/AuthorList/index.jsx',
EntryForm: exports.APP_DIR + '/EntryForm/EntryForm.js',
Publish: exports.APP_DIR + '/Publish/index.jsx',
TagBar: exports.APP_DIR + '/TagBar/index.jsx',
ListView : exports.APP_DIR + '/ListView/index.jsx',
Settings: exports.APP_DIR + '/Settings/index.jsx',
Feature: exports.APP_DIR + '/Feature/index.jsx',
Navbar: exports.APP_DIR + '/Navbar/index.jsx',
AuthorBar: exports.APP_DIR + '/AuthorBar/index.jsx',
Tooltip: exports.APP_DIR + '/Tooltip/index.js',
Caption: exports.APP_DIR + '/Caption/index.js',
Sortable: exports.APP_DIR + '/Sortable/index.js',
ShareAdmin: exports.APP_DIR + '/ShareAdmin/index.jsx',
GuestListing: exports.APP_DIR + '/GuestListing/index.jsx',
ImageZoom: exports.APP_DIR + '/ImageZoom/index.js',
ImageOrientation: exports.APP_DIR + '/ImageOrientation/index.jsx'
}