Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

helpers.mjs 384B

12345678910
  1. import {applyExtends as _applyExtends} from '../build/lib/utils/apply-extends.js';
  2. import {hideBin} from '../build/lib/utils/process-argv.js';
  3. import Parser from 'yargs-parser';
  4. import shim from '../lib/platform-shims/esm.mjs';
  5. const applyExtends = (config, cwd, mergeExtends) => {
  6. return _applyExtends(config, cwd, mergeExtends, shim);
  7. };
  8. export {applyExtends, hideBin, Parser};