webpack-prompt-plugin
TypeScript icon, indicating that this package has built-in type declarations

1.1.11 • Public • Published

webpack-prompt-plugin

Used to prompt ip link and some other information when webpack-dev-server Successfully started

usage

install

yarn add webpack-prompt-plugin --dev

或者

pnpm install webpack-prompt-plugin -D
const webpackPromptPlugin = require('webpack-prompt-plugin');

module.exports = {
  // ...
  plugins: [
    new webpackPromptPlugin()
  ],
}
// 带参数
module.exports = {
  // ...
  plugins: [
    new WebpackPromptPlugin({
      tips: [
        {
          name: '[🏀] web project',
          color: 'green'
        },
        'this is react spa project'
      ],
      style: 'table'
    })
  ],
}

Instance attributes

style 'default' | 'text' | 'table'

  • default

    default style

  • text

    text style

  • table

    table style

default style is default 😂

tips: Array<{ text: string, color?: string } | string>

Prompt message queue, array object or string array can be

{
  tips: [
    {
      name: '[🏀] web project',
      color: 'green'
    },
    'this is react spa project'
  ],
}

tips text

Package Sidebar

Install

npm i webpack-prompt-plugin

Weekly Downloads

24

Version

1.1.11

License

ISC

Unpacked Size

10.9 kB

Total Files

8

Last publish

Collaborators

  • ifmiss