JSLib 生成器
JS 库的生成器。
它创建一个目录结构来组织您的文件:
├── src (the sources of your library)
│ └── main.js (the main file of your library)
│
├── build (all your scripts concatenated ready for distribution)
│ └── lib-name.js
│
├── deps (your non bower non npm library 3rd party dependencies)
│
├── test (the code of your tests)
│
├── doc (the API documentation)
│
1