-
Notifications
You must be signed in to change notification settings - Fork 380
Enable Shakapacker early hints #687
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
Open
justin808
wants to merge
11
commits into
master
Choose a base branch
from
justin808/shakapacker-early-hints
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,363
−1,341
Open
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
8731438
Changes auto-committed by Conductor
justin808 a810cca
Fix Ruby version mismatch for CI
justin808 9fca254
Add postinstall script to build shakapacker from GitHub branch
justin808 eb1b3be
Update lock files for shakapacker branch changes
justin808 9930aaf
Enable early hints debug mode
justin808 395b7a4
Update shakapacker to latest from early-hints branch
justin808 58f9d8e
Update shakapacker to latest from early-hints branch
justin808 8082229
Update shakapacker to latest from early-hints branch
justin808 0104fb1
Enable Puma early hints support in all Procfiles
justin808 56d2a68
Keep --early-hints only for production and testing
justin808 b6255d5
Enable early hints in Control Plane production deployment
justin808 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9135,10 +9135,9 @@ [email protected]: | |
resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" | ||
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== | ||
|
||
shakapacker@9.3.0-beta.2: | ||
"shakapacker@github:shakacode/shakapacker#justin808/early-hints": | ||
version "9.3.0-beta.2" | ||
resolved "https://registry.npmjs.org/shakapacker/-/shakapacker-9.3.0-beta.2.tgz#32d8c2b1009d81ea572c0e647deb5f295a22e591" | ||
integrity sha512-c2v26Tie0szh+34PZBpcL+luVgVFxtvtu8GtXK6+9DDcI2BJ2h/o9iyGemIHIHo48v7+vdTiicbqkYDq/EpQtA== | ||
resolved "https://codeload.github.com/shakacode/shakapacker/tar.gz/6bf6bf5c21388a402362c516370606529d6cfecd" | ||
dependencies: | ||
js-yaml "^4.1.0" | ||
path-complete-extname "^1.0.0" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Postinstall script uses Unix shell syntax; will not work on Windows.
The postinstall script uses bash conditionals and Unix paths that will fail on Windows systems (even with Git Bash). If this project supports Windows developers, this needs a cross-platform solution (e.g., using Node.js scripts or a cross-platform shell runner like
cross-env
).Consider refactoring this into a Node.js script or using a tool like
node-shell-script
or platform-specific fallbacks. Alternatively, document that Windows developers must use WSL.