Update gulpfile, remove favicons, and add placeholders for directories

This commit is contained in:
Matthew Ross 2016-04-21 05:56:28 -04:00
parent 18aebfc01e
commit fa68d3ec1f
29 changed files with 7 additions and 16 deletions

View File

@ -23,7 +23,7 @@ let gulp = require('gulp'),
scss_base: 'node_modules/scss-base/src',
tsconfig: 'src/app/tsconfig.json',
ts: 'src/app/**/*.ts',
tests: 'test/**/*.spec.js',
tests: 'test/app/**/*.spec.js',
html: [
'src/**/*.html',
'src/.htaccess'
@ -120,13 +120,13 @@ gulp.task('api', () => {
.pipe(gulp.dest('dist/api/'));
});
gulp.task('test', ['tsc', 'vendor'], () => {
return gulp.src('test/**/*.spec.js')
gulp.task('test-app', ['tsc', 'vendor'], () => {
return gulp.src(paths.tests)
.pipe(mocha());
});
gulp.task('coverage', ['tsc', 'vendor'], () => {
return gulp.src('test/**/*.spec.js')
return gulp.src(paths.tests)
.pipe(coverage.instrument({
pattern: ['dist/app/**/*.js']
}))
@ -136,6 +136,9 @@ gulp.task('coverage', ['tsc', 'vendor'], () => {
.pipe(gulp.dest('./'));
});
gulp.task('test-api', () => {
});
gulp.task('watch', () => {
let watchTs = gulp.watch(paths.ts, ['tsc']),
watchScss = gulp.watch(paths.scss, ['lintScss', 'styles']),

0
src/api/controllers/todo Normal file
View File

0
src/api/models/todo Normal file
View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="icons/mstile-70x70.png"/>
<square150x150logo src="icons/mstile-150x150.png"/>
<square310x310logo src="icons/mstile-310x310.png"/>
<wide310x150logo src="icons/mstile-310x150.png"/>
<TileColor>#2b5797</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 314 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 534 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

0
src/scss/todo Normal file
View File

0
test/api/todo Normal file
View File

0
test/app/todo Normal file
View File