Skip to content

Commit a7267b4

Browse files
committed
remove more references to make and Makefile
1 parent dc58252 commit a7267b4

File tree

4 files changed

+8
-17
lines changed

4 files changed

+8
-17
lines changed

.editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,3 @@ insert_final_newline = true
1010
trim_trailing_whitespace = true
1111
indent_style = space
1212
indent_size = 2
13-
14-
[Makefile]
15-
indent_style = tab

.github/CONTRIBUTING.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ We ask you please keep these goals in mind when making or proposing changes.
4040

4141
Follow these steps to get going. If you are having trouble, don't be afraid to [ask for help](#got-a-question).
4242

43+
> PRO TIP: Run `npm start` to see a list of commands which can be run with `npm start <command>`
44+
4345
1. [Install Node.js 4.x or newer](https://nodejs.org/download).
44-
1. Install [GNU Make](https://www.gnu.org/software/make/) or equivalent.
4546
1. Follow [Github's documentation](https://help.github.com/articles/fork-a-repo/) on setting up Git, forking and cloning.
4647
1. Create a new branch in your working copy. Give your branch a descriptive name, such as `issue/12345`: `git checkout -b issue/12345`.
4748
1. Execute `npm install` to install the development dependencies.

docs/index.md

+5-12
Original file line numberDiff line numberDiff line change
@@ -1149,16 +1149,13 @@ The command `mocha --reporter doc array` would yield:
11491149
</section>
11501150
```
11511151

1152-
The SuperAgent request library [test documentation](https://visionmedia.github.io/superagent/docs/test.html) was generated with Mocha's doc reporter using this simple make target:
1152+
The SuperAgent request library [test documentation](https://visionmedia.github.io/superagent/docs/test.html) was generated with Mocha's doc reporter using this Bash command:
11531153

1154-
```makefile
1155-
test-docs:
1156-
$(MAKE) test REPORTER=doc \
1157-
| cat docs/head.html - docs/tail.html \
1158-
> docs/test.html
1154+
```bash
1155+
$ mocha --reporter=doc | cat docs/head.html - docs/tail.html > docs/test.html
11591156
```
11601157

1161-
View the entire [Makefile](https://github.com/visionmedia/superagent/blob/master/Makefile) for reference.
1158+
View SuperAgent's [Makefile](https://github.com/visionmedia/superagent/blob/master/Makefile) for reference.
11621159

11631160
### Markdown
11641161

@@ -1275,11 +1272,7 @@ The following editor-related packages are available:
12751272

12761273
### TextMate
12771274

1278-
The Mocha TextMate bundle includes snippets to make writing tests quicker and more enjoyable. To install the bundle, clone a copy of the [Mocha repo](https://github.com/mochajs/mocha), and run:
1279-
1280-
```sh
1281-
$ make tm
1282-
```
1275+
The [Mocha TextMate bundle](https://github.com/mochajs/mocha.tmbundle) includes snippets to make writing tests quicker and more enjoyable.
12831276

12841277
### JetBrains
12851278

karma.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module.exports = config => {
6464
};
6565

6666
// TO RUN AGAINST SAUCELABS LOCALLY, execute:
67-
// `CI=1 SAUCE_USERNAME=<user> SAUCE_ACCESS_KEY=<key> make test-browser`
67+
// `CI=1 SAUCE_USERNAME=<user> SAUCE_ACCESS_KEY=<key> npm start test.browser`
6868
const env = process.env;
6969
let sauceConfig;
7070

0 commit comments

Comments
 (0)