Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tighten up assets and bundling #209

Merged
merged 6 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
/test/dummy/log/*.log
/test/dummy/storage/
/test/dummy/tmp/
/app/assets/javascripts/hotwire_combobox.*.js
/node_modules
package-lock.json
*.log
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@
!app/assets/
!app/assets/javascripts/
!app/assets/javascripts/hotwire_combobox.esm.js
!app/assets/javascripts/hotwire_combobox.umd.js
!README.md
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in hotwire_combobox.gemspec.
gemspec

# Dependencies for the test app:
gem "puma"
gem "sqlite3"
gem "importmap-rails"
Expand All @@ -13,9 +14,9 @@ gem "selenium-webdriver"
gem "webdrivers"
gem "stimulus-rails"
gem "turbo-rails"
gem "propshaft"
gem "minitest-focus"
gem "geared_pagination"
gem "sprockets-rails", require: "sprockets/railtie"
gem "propshaft"
# gem "sprockets-rails", require: "sprockets/railtie" # for testing with sprockets
gem "rubocop-37signals", require: false
gem "rubocop-capybara", require: false
Loading