问题描述
我在 gulp 中使用 Browserify.我也在尝试将我的测试编译到一个文件中.但与我运行良好的主应用程序不同,我无法编译测试.主要区别在于测试有多个入口点,没有像那个应用程序那样的单一入口点.但是我从 Browserify 收到错误,它找不到入口点.
I am using Browserify within gulp. I am trying to compile down my tests to a single file as well. But unlike my main app, which I have working just fine, I am having trouble getting the tests to compile. The major difference is the tests have multiple entry points, there isn't one single entry point like that app. But I am getting errors fro Browserify that it can't find the entry point.
browserify = require 'browserify'
gulp = require 'gulp'
source = require 'vinyl-source-stream'
gulp.task 'tests', ->
browserify
entries: ['./app/js/**/*Spec.coffee']
extensions: ['.coffee']
.bundle
debug: true
.pipe source('specs.js')
.pipe gulp.dest('./specs/')
推荐答案
以下是我能够构建的似乎可以解决问题的任务.基本上,我使用外部库将文件名收集为数组.然后将该数组作为入口点传递
Below is a task I was able to build that seems to solve the problem. Basically I use an outside library to gather the files names as an array. And then pass that array as the entry points
'use strict;'
var config = require('../config');
var gulp = require('gulp');
var plumber = require('gulp-plumber');
var glob = require('glob');
var browserify = require('browserify');
var source = require('vinyl-source-stream');
gulp.task('tests', function(){
var testFiles = glob.sync('./spec/**/*.js');
return browserify({
entries: testFiles,
extensions: ['.jsx']
})
.bundle({debug: true})
.pipe(source('app.js'))
.pipe(plumber())
.pipe(gulp.dest(config.dest.development));
});
这篇关于Browserify - 多个入口点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!