包详细信息

@smake/utils

kuyoonjo5MIT1.0.3

Typescript Module Template

typescript, generator, node, module

自述文件

@smake/utils

// smake.js
const { Fn, Shell } = require('@smake/utils');

module.exports = [
  new Fn('1', () => console.log('Fn OK')),
  new Shell('2', 'echo', ['Shell OK']),
  new Shell('3', 'ls'),
];