UNPKG

214 BJavaScriptView Raw
1/**
2* Scaffold for web projects.
3* @module apeman-scff-web
4* @version 3.0.0
5*/
6
7'use strict'
8
9const scff = require('./scff')
10
11let lib = Object.assign({}, scff)
12
13Object.assign(lib, {
14 scff
15})
16
17module.exports = lib