Revert more baselines, add jake task for typemock

This commit is contained in:
Ron Buckton
2017-12-19 13:40:32 -08:00
parent b4c3bd45ea
commit e426257d8c
773 changed files with 4448 additions and 4288 deletions

View File

@@ -6,7 +6,7 @@ const mocha = require("gulp-mocha");
const del = require("del");
const src = {
compile: tsb.create("src/tsconfig.json"),
compile: tsb.create("tsconfig.json"),
src: () => gulp.src(["src/**/*.ts"]),
dest: () => gulp.dest("dist")
};
@@ -23,6 +23,6 @@ gulp.task("test", ["build"], () => gulp
.src(["dist/tests/index.js"], { read: false })
.pipe(mocha({ reporter: "dot" })));
gulp.task("watch", () => gulp.watch(["src/**/*"], ["test"]));
gulp.task("watch", () => gulp.watch(["src/**/*", "tsconfig.json"], ["test"]));
gulp.task("default", ["test"]);

View File

@@ -5,6 +5,11 @@
"strict": true,
"declaration": true,
"sourceMap": true,
"types": ["mocha"]
}
"types": ["mocha"],
"newLine": "LF",
"outDir": "dist"
},
"include": [
"src/**/*"
]
}