0.1.2 • Published 7 months ago

rollup-plugin-html-location v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

rollup-plugin-html-location

Specify the output location of the html entry file.

Installation

npm install rollup-plugin-html-location -D

Usage

Assuming the project structure is as follows:

/
├─src
│  ├─demo
│  │  ├─demo1
│  │  │  └─index.html
│  │  └─demo2
│  │     └─index.html
│  └─main.js
├─package.json
├─rollup.config.js
└─...

When whthout plugin

// rollup.config.js
export default {
  input: {
    demo1: 'src/demo1/index.html',
    demo2: 'src/demo2/index.html',
    main: 'main.js',
  },
  output: {
    dir: 'dist',
    entryFileNames: '[name].js',
  },
};

Output:

├─dist
│  ├─src
│  │  ├─demo1
│  │  │  └─index.html
│  │  └─demo2
│  │     └─index.html
│  └─main.js
└─...

Whth plugin

dir option

// rollup.config.js
import HTMLLocation from 'rollup-plugin-html-location';

export default {
  input: {
    demo1: 'src/demo1/index.html',
    demo2: 'src/demo2/index.html',
    main: 'main.js',
  },
  output: {
    dir: 'dist',
    entryFileNames: '[name].js',
  },
  plugins: [
    HTMLLocation({
      dir: 'result',
    }),
  ],
};

Output:

├─dist
│  ├─result
│  │  └─src
│  │     ├─demo1
│  │     │  └─index.html
│  │     └─demo2
│  │        └─index.html
│  └─main.js
└─...

filename option

Use path key value pair
// rollup.config.js
import HTMLLocation from 'rollup-plugin-html-location';

export default {
  input: {
    demo1: 'src/demo1/index.html',
    demo2: 'src/demo2/index.html',
    main: 'main.js',
  },
  output: {
    dir: 'dist',
    entryFileNames: '[name].js',
  },
  plugins: [
    HTMLLocation({
      filename: {
        'src/demo1/index.html': 'result/demo1.html'
        'src/demo2/index.html': 'result/demo2.html'
      }
    })
  ],
};

Output:

├─dist
│  ├─result
│  │  ├─demo1.html
│  │  └─demo2.html
│  └─main.js
└─...
Use function
// rollup.config.js
import HTMLLocation from 'rollup-plugin-html-location';

export default {
  input: {
    demo1: 'src/demo1/index.html',
    demo2: 'src/demo2/index.html',
    main: 'main.js',
  },
  output: {
    dir: 'dist',
    entryFileNames: '[name].js',
  },
  plugins: [
    HTMLLocation({
      filename: input => input.replace('src/', ''),
    }),
  ],
};

Output:

├─dist
│  ├─demo1
│  │  └─index.html
│  ├─demo2
│  │  └─index.html
│  └─main.js
└─...

disableClearEmptyFolder option

// rollup.config.js
import HTMLLocation from 'rollup-plugin-html-location';

export default {
  input: {
    demo1: 'src/demo1/index.html',
    demo2: 'src/demo2/index.html',
    main: 'main.js',
  },
  output: {
    dir: 'dist',
    entryFileNames: '[name].js',
  },
  plugins: [
    HTMLLocation({
      filename: {
        'src/demo1/index.html': 'demo1.html'
        'src/demo2/index.html': 'demo2.html'
      },
      disableClearEmptyFolder: true,
    }),
  ],
};

Output:

├─dist
│  ├─src
│  │  ├─demo1
│  │  └─demo2
│  ├─demo1.html
│  ├─demo2.html
│  └─main.js
└─...

logging option

// rollup.config.js
import HTMLLocation from 'rollup-plugin-html-location';

export default {
  input: {
    demo1: 'src/demo1/index.html',
    demo2: 'src/demo2/index.html',
    main: 'main.js',
  },
  output: {
    dir: 'dist',
    entryFileNames: '[name].js',
  },
  plugins: [
    HTMLLocation({
      filename: {
        'src/demo1/index.html': 'demo1.html'
        'src/demo2/index.html': 'demo2.html'
      },
      logging: true,
    }),
  ],
};

Print operation log:

html-location:  [src/demo1/index.html] ==> [demo1.html]
html-location:  [src/demo2/index.html] ==> [demo2.html]
html-location:  clear empty folder!

License

MIT

0.1.2

7 months ago

0.1.1

7 months ago

0.1.0

7 months ago