We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c258f0 commit b5a40e4Copy full SHA for b5a40e4
1 file changed
CONTRIBUTING.md
@@ -14,6 +14,19 @@ mode with live reloading with `npm start`.
14
15
There are some linters and tests. `npm test` runs all linters and tests.
16
17
+### Updating config.js
18
+
19
+To avoid comitting production values in `config.js`, make sure to ignore it with
20
+```bash
21
+git update-index --assume-unchanged scripts/config.js
22
+```
23
24
+If you want to commit a change to the checked in version, you can use the following to
25
+track changes again:
26
27
+git update-index --no-assume-unchanged scripts/config.js
28
29
30
### License
31
All code should be licensed under the [MPL-2.0](LICENSE). By submitting a pull
32
request you agree that your code is licensed that way.
0 commit comments