通过concat-from-list,你可以轻松地连接JSONCSON文件中列出的多个文件。首先,安装全局模块:


$ npm install -g concat-from-list

接着,在app.json中存储所有要连接的文件路径列表,例如:


[ \"a.js\", \"dir/b.js\", \"./dir/c.js\", \"../bower_components/jquery.js\" ]

这些路径是相对于存储JSON文件的目录的。接下来,运行以下命令来连接文件:


$ concat-from-list app.json dist/app.js

如果你不想全局安装,可以选择本地安装:


$ npm install --save-dev concat-from-list

$ ./node_modules/.bin/concat-from-list path/to/a