0.0.2 • Published 7 years ago

rollup-plugin-absolute-module-fix v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

Rollup Plugin Absolute Module Fix

Regarding this issue I wrote this rollup plugin to fix it temporarily. Looking forward to see when Angular team will fix this.
Only will replace absolute module path from module/index to module and ignore relative paths.

Installation

You can install from npm repository

$ npm install --save-dev rollup-plugin-absolute-module-fix

Usage

import { rollup } from 'rollup';
import absModuleFix from 'rollup-plugin-absolute-module-fix';

rollup({
  entry: 'main.js',
  plugins: [
    absModuleFix()
  ]
}).then(...)

License

MIT