吞咽并注入路径

时间:2016-04-30 13:49:26

标签: javascript node.js npm gulp gulp-inject

在visual studio中我有以下客户端项目结构

runtime.extendsFrom('preRuntime'){exclude `com.foo:bar:1.0'}

使用gulp-inject我想在index.html中注入我的javascript路径:

-wwwroot
   -app
      -js
      -views
   -css
   -images
   -lib
   index.html

gulpfile.js位于wwwroot目录之外。 这里的问题是在我的index.html中,注入的形式为:

gulp.task('injecttest', function () {
    var target = gulp.src('wwwroot/index.html');
    var sources = gulp.src(['wwwroot/app/js/**/*.js'], { read: false });

    return target.pipe(inject(sources)).pipe(gulp.dest('wwwroot/'));;
});

并且需要工作

<script src="/wwwroot/app/js/RemoteCallServices.js"></script>

我如何实现这一目标?

1 个答案:

答案 0 :(得分:1)

您可以使用gulp-inject ignorePath选项

def make_f(g):
    # Note: a new f() is compiled each time make_f() is called!
    @jit(nopython=True)
    def f(x):
        return g(x) + g(-x)
    return f

f = make_f(my_g_function)
result = f(1)