chore(scripts): update app-scripts to run via node, remove snapshot clean

This commit is contained in:
Brandy Carney
2017-01-19 18:20:47 -05:00
parent 8338a90d85
commit d0db916f53
2 changed files with 4 additions and 5 deletions

View File

@ -11,7 +11,7 @@ import { DIST_E2E_ROOT, DIST_E2E_COMPONENTS_ROOT, PROJECT_ROOT, SCRIPTS_ROOT } f
import { mergeObjects } from '../util';
task('snapshot', ['e2e.clean', 'e2e.prod'], (done: Function) => {
task('snapshot', ['e2e.prod'], (done: Function) => {
snapshot(false, false, done);
});
@ -19,7 +19,7 @@ task('snapshot.skipBuild', ['e2e.sass'], (done: Function) => {
snapshot(false, false, done);
});
task('snapshot.dev', ['e2e.clean', 'e2e'], (done: Function) => {
task('snapshot.dev', ['e2e'], (done: Function) => {
snapshot(false, true, done);
});