Thank you for your interest in contributing to Shakapacker! We welcome all contributions that align with our project goals and values. To ensure a smooth and productive collaboration, please follow these guidelines.
- Reporting Issues
- Submitting Pull Requests
- Setting Up a Development Environment
- Making sure your changes pass all tests
- Testing the installer
If you encounter any issues with the project, please first check the existing issues (including closed ones). If the issues is not reported before, please opening an issue on our GitHub repository. Please provide a clear and detailed description of the issue, including steps to reproduce it. Creating a demo repository to demonstrate the issue would be ideal (and in some cases necessary).
If looking to contribute to the project by fixing existing issues, we recommend looking at issues, particularly with the "help wanted" label.
We welcome pull requests that fix bugs, add new features, or improve existing ones. Before submitting a pull request, please make sure to:
- Open an issue about what you want to propose before start working on.
- Fork the repository and create a new branch for your changes.
- Write clear and concise commit messages.
- Follow our code style guidelines.
- Write tests for your changes and make sure all tests pass.
- Update the documentation as needed.
- Update CHANGELOG.md if the changes affect public behavior of the project.
- Update RBS type signatures in
sig/directory if you modify public APIs.
This project includes configuration for git hooks via husky and lint-staged, but they are opt-in for contributors.
Why are hooks optional? As a library project, we don't enforce git hooks because:
- Different contributors may have different workflows
- Forcing hooks can interfere with contributor tooling
- CI/CD handles the final validation
To enable pre-commit hooks locally:
yarn install
npx huskyShakapacker includes RBS type signatures for all public APIs in the sig/ directory. These signatures provide static type checking and improved IDE support.
Update RBS signatures when you:
- Add new public methods or classes
- Change method signatures (parameters, return types)
- Modify public APIs
- Add or remove public attributes
sig/
├── shakapacker.rbs # Main Shakapacker module
└── shakapacker/
├── configuration.rbs # Configuration class
├── helper.rbs # View helper module
├── manifest.rbs # Manifest class
├── compiler.rbs # Compiler class
└── ... # Other components
To validate your RBS signatures:
# Install RBS if not already installed
gem install rbs
# Validate all signatures
rbs validate
# Check a specific file
rbs validate sig/shakapacker/configuration.rbs- Use specific types instead of
untypedwhen possible - Document optional parameters with
?prefix - Use union types for methods that can return multiple types (e.g.,
String | nil) - Keep signatures in sync with implementation changes
- Test with type checkers like Steep when possible
- Use
voidvsnilappropriately:- Use
voidwhen the return value is expected to be discarded (e.g.,initialize) - Use
nilwhen a method explicitly returns nil as a meaningful value
- Use
- Module singleton methods: For modules using
extend self, usemodule ModuleName : _Singletonto indicate all methods are module-level singleton methods
# Good: Specific types with documentation
class Shakapacker::Configuration
def initialize: (
root_path: Pathname,
config_path: Pathname,
env: ActiveSupport::StringInquirer,
?bundler_override: String?
) -> void
def source_path: () -> Pathname
def webpack?: () -> bool
def assets_bundler: () -> String
end
# Module with singleton methods (using extend self)
module Shakapacker : _Singleton
def self.config: () -> Configuration
def self.compile: () -> bool
end
# Avoid: Overly generic types
class Shakapacker::Configuration
def initialize: (**untyped) -> void
def source_path: () -> untyped
end# Full linting with type checking (slower but thorough)
yarn lint
# Fast linting without type checking (for quick feedback)
yarn lint:fast
# With caching for better performance
yarn lint --cachePerformance Note: TypeScript ESLint uses type-aware linting for better type safety, which can be slower on large codebases. Use yarn lint:fast during development for quick feedback.
-
To test your changes on a Rails test project do the following steps:
-
For Ruby gem, update
Gemfileand point theshakapackerto the locally developing Shakapacker project:gem 'shakapacker', path: "relative_or_absolute_path_to_local_shakapacker"
-
For npm package, use
yalcwith following steps:# In Shakapacker root directory yalc publish # In Rails app for testing yalc link shakapacker # After every change in shakapacker, run the following in Shakapacker directory yalc push # or yalc publish --push
-
-
Run
bin/setupto install development dependencies.bin/setup # Optional: enable local pre-commit hooks npx huskyManual equivalent:
bundle install yarn install
Shakapacker uses optional peer dependencies (via peerDependenciesMeta) for maximum flexibility:
- All peer dependencies are optional - Users only install what they need
- No installation warnings - Package managers won't warn about missing optional dependencies
- Version constraints still apply - When a package is installed, version compatibility is enforced
When importing types from optional peer dependencies, we use @ts-ignore directives:
// @ts-ignore: webpack is an optional peer dependency (using type-only import)
import type { Configuration } from "webpack"This ensures that typecheck downstream won't fail if lib checks are on regardless of if webpack is available.
- Add new peer dependencies to both
peerDependenciesandpeerDependenciesMeta(marking as optional) - Keep version ranges synchronized between
devDependenciesandpeerDependencies - Test with multiple package managers:
npm,yarn, andpnpm - If adding type-only imports from optional dependencies, use the
@ts-ignorepattern shown above
# Test with npm (no warnings expected)
cd /tmp && mkdir test-npm && cd test-npm
npm init -y && npm install /path/to/shakapacker
# Test with yarn (no warnings expected)
cd /tmp && mkdir test-yarn && cd test-yarn
yarn init -y && yarn add /path/to/shakapacker
# Test with pnpm (no warnings expected)
cd /tmp && mkdir test-pnpm && cd test-pnpm
pnpm init && pnpm add /path/to/shakapackerThere are several specs, covering different aspects of Shakapacker gem. You may run them locally or rely on GitHub CI actions configured to test the gem functionality if different Ruby, Rails, and Node environment.
We request running tests locally to ensure the new changes would not break the CI build.
yarn lint
bundle exec rubocop
yarn test
bundle exec rake test
Note: For this, you need yalc to be installed on your local machine
bundle exec rspec spec/configuration_spec.rb
bundle exec rspec -e "#source_entry_path returns correct path"
bundle exec rake run_spec:gem
These specs are to check Shakapacker v7 backward compatibility with v6.x
bundle exec rake run_spec:gem_bc
For this, you need yalc to be installed on your local machine
bundle exec rake run_spec:dummy
To ensure that your installer works as expected, either you can run bundle exec rake run_spec:install, or take the following manual testing steps:
- Update the
Gemfileso that gemshakapackerhas a line like this, pointing to your developing Shakapacker:gem 'shakapacker', path: "relative_or_absolute_path_to_the_gem"
- Run
bundle installto install the updated gem. - Run
bundle exec rails shakapacker:installto confirm that you got the right changes.
Note: Ensure that you use bundle exec otherwise the installed shakapacker gem will run and not the one you are working on.
Shakapacker uses GitHub Actions for continuous integration. The CI workflows use Yarn as the package manager for consistency and reliability.
The project uses Yarn in CI workflows for the following reasons:
- Deterministic dependency resolution with
yarn.lock - Faster installation with offline mirror support
- Better workspace support for monorepo-style testing
- Consistent behavior across different Node.js versions
.github/workflows/test-bundlers.yml- Tests webpack, rspack, and bundler switching.github/workflows/ruby.yml- Ruby test suite across Ruby/Rails versions.github/workflows/node.yml- Node.js test suite across Node versions.github/workflows/generator.yml- Generator installation tests.github/workflows/dummy.yml- Dummy app integration tests.github/workflows/eslint-validation.yml- ESLint configuration validation
All workflows use:
- uses: actions/setup-node@v4
with:
cache: "yarn"
cache-dependency-path: spec/dummy/yarn.lockAnd install dependencies with:
yarn installTo reduce CI costs and execution time, workflows use path filtering to run only when relevant files change:
- Ruby workflow - Only runs when Ruby files, gemspecs, Gemfile, or RuboCop config changes
- Node workflow - Only runs when JS/TS files, package.json, or Node config changes
- Generator specs - Only runs when generator-related files change
- Dummy specs - Only runs when dummy app or lib files change
- Test bundlers - Only runs when code affecting bundler integration changes
This means documentation-only PRs (e.g., only changing README.md) will skip all test workflows entirely.
Important: The full test suite always runs on pushes to the main branch to ensure the main branch is always thoroughly tested.
All workflows can be triggered manually via the GitHub Actions UI using the "Run workflow" button. This is useful for:
- Re-running tests after a temporary CI failure
- Testing workflows on specific branches without creating a PR
- Running full test suites on PRs that would normally skip certain workflows
The Node workflow includes conditional execution of actionlint (GitHub Actions linter):
- Only downloads and runs when
.github/workflows/*files change - Saves time by skipping on most PRs
- Includes caching for faster execution when needed
While CI uses Yarn, the gem supports all major package managers (npm, yarn, pnpm, bun). Generator specs test against all package managers to ensure compatibility.