intermediate fix untel figuring out pathing problems with smartgulp
This commit is contained in:
5
dist/mod02/index.js
vendored
5
dist/mod02/index.js
vendored
@ -13,6 +13,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
* -------------------------------------------- */
|
||||
const plugins = require("./mod02.plugins");
|
||||
const paths = require("../npmts.paths");
|
||||
let gulp = require('gulp');
|
||||
const q = require("smartq");
|
||||
/**
|
||||
* runs mocha
|
||||
@ -28,7 +29,7 @@ let tap = function (configArg) {
|
||||
* handle the testable files
|
||||
*/
|
||||
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||
plugins.gulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
||||
gulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
||||
plugins.gulpSourcemaps.init(),
|
||||
plugins.gulpTypeScript({
|
||||
target: 'ES5',
|
||||
@ -47,7 +48,7 @@ let tap = function (configArg) {
|
||||
* handle the test files
|
||||
*/
|
||||
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
||||
gulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
||||
plugins.gulpTypeScript({
|
||||
target: 'ES5',
|
||||
emitDecoratorMetadata: true,
|
||||
|
Reference in New Issue
Block a user