https://levelup.gitconnected.com/modern-development-with-rails-d9c6cf929ff6
-
Ruby version
-
System dependencies
app/assets/builds in which the esbuild generated files will be stored
app/javascript/application.js which will be the entrypoint for all my JavaScript code`
-
build:js- the original scriptbuildnow isbuild:jsso that its name reveals its purpose, to build only the JavaScript code. -
eslint:check- eslint will check for errors in the code -
prettier:check- prettier will run through the code and check for formatting errors -
build:css- but css processing here (postcss). Now it is just for CI to run correctly -
build- still need the build script because it is called automatically by thejsbundling-railsgem to build JavaScript after asset pre-compilation. Call eslint and prettier here. -
failure:js- that will remove the esbuild generated files if there is a TypeScript compilation error. -
dev- calls tsc-watch. During development this will continuously compile the*.tsfiles and will either invoke esbuild or not, depending on the result of the compilation.
-
web: unset PORT && bin/rails server- the command to start the Rails server -
js: yarn dev- the new command to start tsc-watch -
css: bin/rails tailwindcss:watch- the command to start tailwindcss in watch mode -
css: bin/rails tailwindcss:watch- the command to start tailwindcss in watch mode
compileOnSave- we use ts-watch and don’t need this flag on.