@memlab/cli
Version:
command line interface for memlab
22 lines (18 loc) • 554 B
JavaScript
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @oncall memory_lab
*/
// eslint-disable-next-line no-var
var cli = require('../dist/index');
// register the `@memlab/cli` package info
// so that `memlab version` get use the info
// eslint-disable-next-line fb-www/promise-termination
cli.registerPackage().then(() => {
cli.run();
});