mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-19 17:48:36 +00:00
11 lines
189 B
JavaScript
Vendored
11 lines
189 B
JavaScript
Vendored
/* @flow */
|
|
|
|
(function () {
|
|
require('./lib/main').config(
|
|
Object.assign(
|
|
{},
|
|
require('./lib/env-options'),
|
|
require('./lib/cli-options')(process.argv)
|
|
)
|
|
)
|
|
})()
|