Refactored Invention
- Utilizes yarn workspaces
- This means you do not have to
cdinto folders for development - All development related packages are stored in the root of the project in package.json
- Example usage:
- From root
yarn prettier-standard:formatwill correctly format files - To use scripts specific to the JS workspace
yarn workspaces run ...ex:yarn workspaces run buildwill output the rollup generated dist file
- From root
- This means you do not have to
Installation
Adding to a gem:
# my-cool-gem.gemspec
Gem::Specification.new do |spec|
# ...
spec.add_dependency "refactored_invention"
# ...
endOr adding to your project:
# Gemfile
gem "refactored_invention"Supported Ruby versions
- Ruby (MRI) >= 2.5.0
- JRuby >= 9.2.9
Usage
TBD
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/andrewmcodes/refactored_invention.
License
The gem is available as open source under the terms of the MIT License.