UNPKG

3.61 kBMarkdownView Raw
1# How to Contribute
2
3## Reporting Issues
4
5Please see our [FAQ](https://github.com/wycats/handlebars.js/blob/master/FAQ.md) for common issues that people run into.
6
7Should you run into other issues with the project, please don't hesitate to let us know by filing an [issue][issue]! In general we are going to ask for an example of the problem failing, which can be as simple as a jsfiddle/jsbin/etc. We've put together a jsfiddle [template][jsfiddle] to ease this. (We will keep this link up to date as new releases occur, so feel free to check back here)
8
9Pull requests containing only failing thats demonstrating the issue are welcomed and this also helps ensure that your issue won't regress in the future once it's fixed.
10
11Documentation issues on the handlebarsjs.com site should be reported on [handlebars-site](https://github.com/wycats/handlebars-site).
12
13## Pull Requests
14
15We also accept [pull requests][pull-request]!
16
17Generally we like to see pull requests that
18- Maintain the existing code style
19- Are focused on a single change (i.e. avoid large refactoring or style adjustments in untouched code if not the primary goal of the pull request)
20- Have [good commit messages](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
21- Have tests
22- Don't significantly decrease the current code coverage (see coverage/lcov-report/index.html)
23
24## Building
25
26To build Handlebars.js you'll need a few things installed.
27
28* Node.js
29* [Grunt](http://gruntjs.com/getting-started)
30
31Before building, you need to make sure that the Git submodule `spec/mustache` is included (i.e. the directory `spec/mustache` should not be empty). To include it, if using Git version 1.6.5 or newer, use `git clone --recursive` rather than `git clone`. Or, if you already cloned without `--recursive`, use `git submodule update --init`.
32
33Project dependencies may be installed via `npm install`.
34
35To build Handlebars.js from scratch, you'll want to run `grunt`
36in the root of the project. That will build Handlebars and output the
37results to the dist/ folder. To re-run tests, run `grunt test` or `npm test`.
38You can also run our set of benchmarks with `grunt bench`.
39
40The `grunt dev` implements watching for tests and allows for in browser testing at `http://localhost:9999/spec/`.
41
42If you notice any problems, please report them to the GitHub issue tracker at
43[http://github.com/wycats/handlebars.js/issues](http://github.com/wycats/handlebars.js/issues).
44
45## Ember testing
46
47The current ember distribution should be tested as part of the handlebars release process. This requires building the `handlebars-source` gem locally and then executing the ember test script.
48
49```sh
50npm link
51grunt build release
52cp dist/*.js $emberRepoDir/bower_components/handlebars/
53
54cd $emberRepoDir
55npm link handlebars
56npm test
57```
58
59## Releasing
60
61Handlebars utilizes the [release yeoman generator][generator-release] to perform most release tasks.
62
63A full release may be completed with the following:
64
65```
66yo release
67npm publish
68yo release:publish components handlebars.js dist/components/
69
70cd dist/components/
71gem build handlebars-source.gemspec
72gem push handlebars-source-*.gem
73```
74
75After this point the handlebars site needs to be updated to point to the new version numbers. The jsfiddle link should be updated to point to the most recent distribution for all instances in our documentation.
76
77[generator-release]: https://github.com/walmartlabs/generator-release
78[pull-request]: https://github.com/wycats/handlebars.js/pull/new/master
79[issue]: https://github.com/wycats/handlebars.js/issues/new
80[jsfiddle]: http://jsfiddle.net/9D88g/46/