-
Notifications
You must be signed in to change notification settings - Fork 74
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
[webpack] Precompile assets on test env #113
Conversation
Don't we need to edit that too? Lines 42 to 44 in 6e8c916
|
@hallelujah that's set alright aleady :) |
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.
This also means that the builds will take a bit longer. I hope it helps. :/
Hmm approved but if we are pre-compiling then better setting |
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.
Dismissing approval
config/webpacker.yml
Outdated
@@ -41,7 +41,7 @@ development: | |||
|
|||
test: | |||
<<: *default | |||
compile: true | |||
compile: false |
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.
So when developing you will need to pre-compile the assets everytime? Or does webpacker-dev-server do it for you? Would be good to add some instructions here or probably use some environment to control this.
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.
on development the assets will be compiled when they are required. You could also use webpacker-dev-server for autoloading and other debugging goodness
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.
But this states that they will not be compiled when you test locally
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.
not the tests, sadly, you'll need to precompile them manually.
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.
That is a no go without instructions. But can't we have this with environment switch?
compile: <%= ENV.fetch('WEBPACKER_COMPILE', true) %>
Then in the CI build set this environment to false
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.
Answering: rails/webpacker#956
So no :/
a0b049f
to
05992ef
Compare
What this PR does / why we need it: