From 3a75eb466e5d786674015fc87f49cae47a7166d6 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Sun, 2 Oct 2016 18:59:27 +0200 Subject: [PATCH] docs(contributing): updates gulp commands --- .github/CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 1a1818f75c..4c5514dd98 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -40,8 +40,8 @@ Looking for an issue to fix? Make sure to look through our issues with the [help #### TypeScript Changes 1. If there is a `*.spec.ts` file located in the `test/` folder, update it to include a karma test for your change, if needed. If this file doesn't exist, please notify us. -2. Run `gulp karma` to make sure all tests are working, regardless if a test was added. -3. Run `gulp tslint` and fix any linter errors. +2. Run `gulp test` to make sure all tests are working, regardless if a test was added. +3. Run `gulp lint.ts` and fix any linter errors. #### Sass Changes @@ -57,7 +57,7 @@ Looking for an issue to fix? Make sure to look through our issues with the [help #### Viewing Changes -1. Run the gulp watch task for e2e tests: `gulp watch.e2e` +1. Run the gulp watch task for e2e tests: `gulp e2e.watch` 2. Launch your browser and navigate to `http://localhost:8000/dist/e2e` 3. From here, navigate to the component you are changing. 4. Any changes to the e2e tests in the `test/` directory will show here.