xpm
Version:
The xPack project manager command line tool
39 lines (31 loc) • 1.17 kB
JavaScript
/*
* This file is part of the xPack project (http://xpack.github.io).
* Copyright (c) 2017 Liviu Ionescu. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software
* for any purpose is hereby granted, under the terms of the MIT license.
*
* If a copy of the license was not distributed with this file, it can
* be obtained from https://opensource.org/license/mit.
*/
/**
* This is the module entry point, the file that is processed when
* `require('<module>')` is called.
*
* For this to work, it must be linked from `package.json` as
* `"exports": { "request": "./index.cjs" }`.
*
* To import classes from this module into Node.js applications, use:
*
* ```javascript
* const { Main } = require('<module>')
* ```
*/
const { Main } = require('./lib/main.js')
// ----------------------------------------------------------------------------
// Node.js specific export definitions.
// By default, `module.exports = {}`.
// The Main class is added as a property with the same name to this object.
module.exports.Main = Main
// ----------------------------------------------------------------------------