1.1.9 • Published 2 years ago

rox-embedded-webpack-plugin v1.1.9

Weekly downloads
102
License
SEE LICENSE IN LI...
Repository
-
Last release
2 years ago

rox-embedded-webpack-plugin

A webpack plugin which injects embedded rox configuration into your build.

Peer Dependency Requirements

Installation

Install the plugin:

NPMYarn
npm install --save-dev rox-embedded-webpack-pluginyarn install -D rox-embedded-webpack-plugin

Usage

CommonJS
const ROXEmbeddedPlugin = require('rox-embedded-webpack-plugin');
module.exports = {
  entry: //...,
  output: //...,
  plugins: [
    new ROXEmbeddedPlugin(options)
  ]
}
ES6 / ES2015 Modules
import ROXEmbeddedPlugin = from 'rox-embedded-webpack-plugin';
export default {
  entry: //...,
  output: //...,
  plugins: [
    new ROXEmbeddedPlugin(options)
  ]
}

Options

It is an object with the following keys:

{
   app: <YOUR APP KEY>,
   platform: <YOUR_PLATFORM_OF_CHOICE>, // (you can use 'Browser' here)
   output: <ABS_TEMPORARY_OUTPUT_DIR> // (OPTIONAL)
}
1.1.9

2 years ago

1.1.8

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

4 years ago

1.1.0

6 years ago

1.0.2

6 years ago