git clone [email protected]:cybertooth-io/ember-helper-locale-date.git
cd ember-helper-locale-date
yarn
ember b
ember build
yarn run lint:hbs
yarn run lint:js
yarn run lint:js -- --fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versions
ember server
- Visit the dummy application at http://localhost:4200.
For more information on using ember-cli, visit http://ember-cli.com/.
When upgrading this add-on, after successfully performing ember init
use the following
commands to install the following dependencies required by this add-on.
ember install ember-helper-locale-date
Use yarn.
# from this add-on project
$ yarn link
# from the other project that depends on this add-on
$ yarn link ember-helper-locale-date
In your other project's package.json
, set "ember-helper-locale-date": "*",
Note: I've actually had to go into my other project and put this into its package.json
:
"ember-helper-locale-date": "link:../ember-helper-locale-date",
Again, use yarn.
# from this add-on project
$ yarn unlink
# from the other project that linked to this add-on
$ yarn unlink ember-helper-locale-date
Fork and submit a pull request.
Try to use an emoji to help describe the commit: https://gitmoji.carloscuesta.me/
# `yarn publish` will prompt you for the next/new version name
$ yarn publish
$ git push
$ git push --tags