All Projects → nuxt-contrib → tappable

nuxt-contrib / tappable

Licence: MIT license
Tapable with promise support

Programming Languages

javascript
184084 projects - #8 most used programming language

CircleCI Codecov npm

Tappable

Tapable with promise support.

🛑 Deprecated: please use hookable

Setup

yarn add tappable
# or
npm install --save tappable
// Require module
const Tapable = require('tappable')

Usage

For basic usage please see tapable docs.

applyPlugins*

This functions are wrapped with pify and return promise too.

// Using async/await
await this.applyPluginsAsync('init')

// Using Promise
this.applyPluginsAsync('init')
.then(() => {
  // Applied
})
.catch(err => {
  // Some error happened
})

plugin(names, handler)

When register plugins handler function can also return promise instead of calling callback argument.

webpack.plugin('init', async () => {
  // You can use async/await here  
})

// or
webpack.plugin('init', () => new Promise((resolve, reject) => {
  // Call resolve() or rejcet() when finished or chain promise
}))

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].