Skip to content

Latest commit

 

History

History
142 lines (80 loc) · 3.56 KB

CONTRIBUTING.md

File metadata and controls

142 lines (80 loc) · 3.56 KB

Contributing to ember-container-query

Open source projects like ember-container-query live on your words of encouragement and contribution. Please give feedback, report issues, or submit pull requests!

Here are some guidelines to help you and everyone else.

Local development

You can get started in 2 steps:

  1. Run pnpm install to install project dependencies. This will build the addon ember-container-query.
  2. Run pnpm start to start docs-app (http://localhost:4200) and test-app (http://localhost:4300/tests).
Lint files
  1. When you write code, please check that it meets the linting rules.

    # From the workspace root
    pnpm lint
  2. You can run lint:fix to automatically fix linting errors.

    # From the workspace root
    pnpm lint:fix
Run tests
  1. When you write code, please check that all tests continue to pass.

    # From the workspace root
    pnpm test
Publish packages (for admins)
  1. Generate a personal access token in GitHub, with default values for scopes (none selected).

  2. Run the release:changelog script. This generates a text that you can add to CHANGELOG.md.

    # From the workspace root
    GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm release:changelog
  3. Create a tag and provide release notes. The tag name should match the package version.

  4. Publish the package.

    # From the workspace root
    pnpm release:publish

How can I help?

If you haven't before, I encourage you to watch Sean Massa's mini-talk on what it means to be a contributor. To sum up the talk, you can be a contributor in many ways. I want you to discover a path that meets your goals well!

Here are some suggestions to help you start:

Give feedback 💞
  1. An open source project's value comes from people using the code and extending it to make greater things. Let me know how you use container queries in your Ember app or addon!

  2. You can create an issue to:

    • Share how you used ember-container-query
    • Share what you liked or didn't like about ember-container-query
Help with marketing 📢
  1. Platforms include:

    • Blog post
    • GitHub star
    • Meetup or conference talk
    • Social media
    • Word of mouth
Join this project 👩‍💻👨‍💻
  1. Help me maintain the project! I have limited time and there is much that I don't know.

    • Cut releases
    • Research new ways to implement container queries
    • Respond to issues
    • Review pull requests
Make issues 📝
  1. In addition to sharing feedback (described in Give feedback), you can create an issue to:

    • Ask for better documentation
    • Ask for new feature or refactor
    • Report bug
    • Report outdated dependency
  2. When reporting a bug, please provide details to help me understand what's going on. If possible, please use the latest version of ember-container-query and set up a public demo that I (and others) can check the code.

💡 Have ideas for contribution? Reach out to @ijlee2 on Discord!