contributing.md 2.5 KB
Newer Older
T
Tim Neutkens 已提交
1 2 3 4 5
# Contributing to Next.js

Our Commitment to Open Source can be found [here](https://zeit.co/blog/oss)

1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device.
6 7
2. Install yarn: `npm install -g yarn`
3. Install the dependencies: `yarn`
8 9
4. Run `yarn dev` to build and watch for code changes
5. In a new terminal, run `yarn types` to compile declaration files from TypeScript
10
6. The development branch is `canary` (this is the branch pull requests should be made against). On a release, the relevant parts of the changes in the `canary` branch are rebased into `master`.
11 12

> You may need to run `yarn types` again if your types get outdated.
13

14
## To run tests
15 16 17

Running all tests:

18
```sh
19 20 21 22 23
yarn testonly
```

Running a specific test suite inside of the `test/integration` directory:

24
```sh
25 26 27 28 29
yarn testonly --testPathPattern "production"
```

Running just one test in the `production` test suite:

30
```sh
31 32 33
yarn testonly --testPathPattern "production" -t "should allow etag header support"
```

34
## Running the integration apps
35

36
The correct path to the compiled `next` binary can be discovered by running:
37

38 39 40
```sh
find . -name next -perm -u=x -type f
```
41

42
Running examples can be done with:
43

44 45 46 47
```sh
./packages/next/dist/bin/next ./test/integration/basic
# OR
./packages/next/dist/bin/next ./examples/basic-css/
48
```
49 50 51 52 53 54 55 56 57 58 59 60 61 62

To figure out which pages are available for the given example, you can run:

```sh
EXAMPLE=./test/integration/basic
(\
  cd $EXAMPLE/pages; \
  find . -type f \
  | grep -v '\.next' \
  | sed 's#^\.##' \
  | sed 's#index\.js##' \
  | sed 's#\.js$##' \
  | xargs -I{} echo localhost:3000{} \
)
63 64
```

65
## Running your own app with locally compiled version of Next.js
66

67
1. In your app's `package.json`, replace:
68

69 70 71
   ```json
   "next": "<next-version>",
   ```
72

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
   with:

   ```json
   "next": "file:<local-path-to-cloned-nextjs-repo>/packages/next",
   ```

2. In your app's root directory, make sure to remove `next` from `node_modules` with:

   ```sh
   rm -rf ./node_modules/next
   ```

3. In your app's root directory, run:

   ```sh
   yarn
   ```

   to re-install all of the dependencies.

   Note that Next will be copied from the locally compiled version as opposed to from being downloaded from the NPM registry.

4. Run your application as you normally would.
96 97 98 99 100 101

5. To update your app's dependencies, after you've made changes to your local `next` repository. In your app's root directory, run:

   ```sh
   yarn install --force
   ```