We're a place where coders share, stay up-to-date and grow their careers.
Have you found any method for including js from node_modules in order? Or is the replacement for the asset pipeline just useless in Rails 6 because we can't define the order in which js is included?
Why you have to include? Just use yarn add package_name to add js library and require or import the global variable.
I meant require when I said include. The webpack puts the JS in the wrong order and it doesn't work when I do a regular require.
Have you found any method for including js from node_modules in order? Or is the replacement for the asset pipeline just useless in Rails 6 because we can't define the order in which js is included?
Why you have to include? Just use yarn add package_name to add js library and require or import the global variable.
I meant require when I said include. The webpack puts the JS in the wrong order and it doesn't work when I do a regular require.