-
Notifications
You must be signed in to change notification settings - Fork 380
Fix Procfiles to use new process names #216
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
Changes from all commits
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# For keeping webpack bundles up-to-date during a testing workflow. | ||
# If you don't keep this process going, you will rebuild the assets per spec run. This is configured | ||
# in rails_helper.rb. | ||
rails-test: sh -c 'npm run build:test:client' | ||
|
||
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. we need this |
||
# Build client assets, watching for changes. | ||
rails-client-assets: sh -c 'npm run build:dev:client' | ||
|
||
# Build server assets, watching for changes. Remove if not server rendering. | ||
rails-server-assets: sh -c 'npm run build:dev:server' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Run Rails without hot reloading (static assets) | ||
# Run Rails without hot reloading (static assets). | ||
rails: rails s | ||
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. not tru |
||
|
||
# Build client assets, watching for changes. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,10 @@ | |
"build:clean": "rm app/assets/webpack/*", | ||
"build:production:client": "(cd client && npm run build:production:client --silent)", | ||
"build:production:server": "(cd client && npm run build:production:server --silent)", | ||
"build:dev:client": "(cd client && npm run build:dev:client --silent)", | ||
"build:client": "(cd client && npm run build:client --silent", | ||
"build:dev:server": "(cd client && npm run build:dev:server --silent)", | ||
"build:server": "(cd client && npm run build:server --silent)", | ||
"build:dev:client": "(cd client && npm run build:dev:client --silent)", | ||
"build:dev:server": "(cd client && npm run build:dev:server --silent)", | ||
"hot-assets": "(cd client && npm run hot-assets)", | ||
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. did you only change the order of the lines? 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. @justin808 correct |
||
"start": "(cd client && npm run start --silent)" | ||
}, | ||
|
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.
we need this
please don't remove
this is used b/c above we do hot ones
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 is still sort of necessary