UNPKG

263 BJavaScriptView Raw
1'use strict'
2/**
3 * 列出所有模板
4 */
5
6const chalk = require('chalk')
7const tplJson = require('../tpl')
8
9module.exports = () => {
10 console.log()
11 console.log(chalk.grey('The template list is: \n'))
12 console.log(tplJson)
13 console.log()
14 process.exit()
15}