ruby-const-loader
v1.0.3
Published
Webpack loader to load Ruby constant into JS
Maintainers
Readme
ruby-const-loader
The ruby-const-loader resolves import/require() on a file into a url and emits the file into the output directory.
Getting Started
To begin, you'll need to install ruby-const-loader:
$ npm install ruby-const-loader --save-devImport (or require) the target file(s) in one of the bundle's files:
file.js
import * as constant from "./constant.rb";Then add the loader to your webpack config. For example:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.(rb)$/i,
use: [
{
loader: "ruby-const-loader",
},
],
},
],
},
};