Skip to content
This repository was archived by the owner on Mar 27, 2020. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: deepsweet/start
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: startReact/start
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

There isn’t anything to compare.

deepsweet:master and startReact:master are entirely different commit histories.

Showing with 4 additions and 4 deletions.
  1. +4 −4 readme.md
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ import Start from 'start';
import reporter from 'start-pretty-reporter';
import env from 'start-env';
import files from 'start-files';
import inputConnector from 'start-input-connector';
import watch from 'start-watch';
import clean from 'start-clean';
import read from 'start-read';
@@ -70,8 +71,8 @@ export const dev = () => start(
files('build/'),
clean(),
files('lib/**/*.js'),
watch((file) => start(
files(file),
watch('lib/**/*.js')((changedFiles) => start(
inputConnector(changedFiles),
read(),
babel(),
write('build/')
@@ -90,8 +91,7 @@ export const test = () => start(
);

export tdd = () => start(
files([ 'lib/**/*.js', 'test/**/*.js' ]),
watch(test)
watch([ 'lib/**/*.js', 'test/**/*.js' ])(test)
);

export coverage = () => start(