mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-05 13:38:18 +08:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
var glob = require('grunt/node_modules/glob')
|
|
var specs = glob.sync('test/unit/specs/**/*.js').map(function (f) {
|
|
return './' + f
|
|
})
|
|
|
|
module.exports = {
|
|
entry: specs,
|
|
output: {
|
|
path: './test/unit',
|
|
filename: 'specs.js'
|
|
},
|
|
devtool: '#source-map'
|
|
} |