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

Fixing assets compile step #462

Merged
merged 1 commit 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
2 changes: 1 addition & 1 deletion bin/setup
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ end

def compile_assets
log 'Compiling assets...'
Rake::Task['javascript:build'].invoke
Rake::Task['assets:precompile'].invoke
Rake::Task['assets:clean'].invoke
success 'Assets compiled!'
end
Expand Down
2 changes: 1 addition & 1 deletion current_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v5.0.0
v5.1.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"webpack-dev-server": "^4.15.2"
},
"scripts": {
"build": "something webpack --config webpack.config.js"
"build": "webpack --config webpack.config.js"
},
"babel": {
"presets": [
Expand Down
Loading