Last change
on this file since 1ad8e64 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
487 bytes
|
Line | |
---|
1 | 'use strict'
|
---|
2 |
|
---|
3 | const constants = require('./constants')
|
---|
4 | const Server = require('./server')
|
---|
5 | const runner = require('./runner')
|
---|
6 | const stopper = require('./stopper')
|
---|
7 | const launcher = require('./launcher')
|
---|
8 | const cfg = require('./config')
|
---|
9 |
|
---|
10 | module.exports = {
|
---|
11 | constants: constants,
|
---|
12 | VERSION: constants.VERSION,
|
---|
13 | Server: Server,
|
---|
14 | runner: runner,
|
---|
15 | stopper: stopper,
|
---|
16 | launcher: launcher,
|
---|
17 | config: { parseConfig: cfg.parseConfig } // lets start with only opening up the `parseConfig` api
|
---|
18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.