MetaSPA / Meta-SPA-Webpack-Plugin

webpack plugin that helps export MetaSPA format JSONP

Repository from Github https://github.comMetaSPA/Meta-SPA-Webpack-PluginRepository from Github https://github.comMetaSPA/Meta-SPA-Webpack-Plugin

Meta SPA Webpack Plugin (WIP)

This plugin helps webpack emit Meta SPA compatible bundle files.

Usage

  • Installation
npm install -D @metaspa/meta-spa-webpack-plugin
  • Add to your webpack config (commonjs style)
  • Be careful this plugin will modified your output target and externals config. The original webpack config about output target and externals will not affect the final build result
const MetaSPAPlugin = require('@metaspa/meta-spa-webpack-plugin').default

module.export = {
    ...
    plugins: [
        new MetaSPAPlugin({
            namespace: 'AppName',
            provide: [
                {module: 'react', symbol: 'React'}
            ]
        })
    ]
}

About

webpack plugin that helps export MetaSPA format JSONP

License:MIT License


Languages

Language:TypeScript 100.0%