-
Notifications
You must be signed in to change notification settings - Fork 245
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
ditch webpacker in favor of jsbundling/esbuild #2594
Changes from 28 commits
759f48f
65e0239
087c106
54f1a3d
6c37421
ada0b40
7ba088f
4584c3e
5d5ac13
1d1ff19
3a153fe
d1bd2ba
5b1aeb3
5367896
b8a5168
abf5937
5a8e160
a10ebc7
1463164
7ba9934
fb1354d
5b3a8ab
1bf9318
b250ca3
af629eb
4000efd
8ff1498
1be44cf
4bbe1b2
df5f41e
99fdcc3
f558b81
d1296ba
09dfa5b
5f69a48
7b3a563
59c9b0b
8e6af2e
a21435e
e24f629
f3cdd6e
fbcf3a8
1c6150c
405e1b5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
web: bin/rails server -p 3000 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Generated by rails:javascript:install; this is what |
||
js: yarn build --watch | ||
css: yarn build:css --watch |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
//= link_tree ../images | ||
//= link_directory ../javascripts .js | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since these are now handled by cssbuild/jsbuild, they're packed up by those process and we don't need to include them in the manifest any longer. Sprockets still packs them up and delivers them though. |
||
//= link_directory ../stylesheets .css | ||
|
||
//= link_tree ../builds |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Major library config | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is basically a recreation of |
||
@import '../../javascript/styles/vendor/googleapis_source_sans_pro'; | ||
@import '../../javascript/styles/bootstrap'; | ||
@import '../../javascript/styles/vendor/jquery-ui'; | ||
|
||
// Custom styling | ||
@import '../../javascript/styles/globals'; | ||
@import '../../javascript/styles/call_list'; | ||
@import '../../javascript/styles/devise'; | ||
@import '../../javascript/styles/users'; | ||
@import '../../javascript/styles/budget_bar'; | ||
@import '../../javascript/styles/clinic_finder'; | ||
@import '../../javascript/styles/calls'; | ||
@import '../../javascript/styles/pagination'; | ||
@import '../../javascript/styles/events'; | ||
@import '../../javascript/styles/patient_menu'; | ||
@import '../../javascript/styles/patient_edit'; | ||
@import '../../javascript/styles/tables'; | ||
@import '../../javascript/styles/footer'; | ||
@import '../../javascript/styles/modals'; | ||
@import '../../javascript/styles/navbar'; | ||
@import '../../javascript/styles/tooltips'; | ||
@import '../../javascript/styles/lines'; | ||
@import '../../javascript/styles/flash'; | ||
@import '../../javascript/styles/forms'; | ||
@import '../../javascript/styles/buttons'; |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
result of rails:javascript:install