-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.js
More file actions
executable file
·31 lines (29 loc) · 759 Bytes
/
index.js
File metadata and controls
executable file
·31 lines (29 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
'use strict'
require('cache-require-paths')
const cmd = require('./lib/cmd.js')
const core = require('./lib/core.js')
const corePreprocessor = require('./lib/core-preprocessor.js')
const coreDollar = require('./lib/core-dollar.js')
const coreChimlParser = require('./lib/core-chiml-parser.js')
const mongo = require('./lib/mongo.js')
const util = require('./lib/util.js')
const web = require('./lib/web.js')
const sender = require('./lib/sender.js')
const server = require('./lib/server.js')
const eisn = require('./lib/eisn.js')
const migration = require('./lib/migration.js')
// The exported resources
module.exports = {
corePreprocessor,
coreChimlParser,
coreDollar,
cmd,
util,
mongo,
core,
web,
sender,
server,
eisn,
migration
}