0.1.3 • Published 6 years ago

ice-plugin-wrap-code v0.1.3

Weekly downloads
8
License
ISC
Repository
-
Last release
6 years ago

ice-plugin-wrap-code

Usage:

// ice.config.js
module.exports = {
  plugins: [
    ['ice-plugin-wrap-code', {
      addCodeBefore: 'console.log("some code before entry")',
      addCodeAfter: 'console.log("some code after entry")',
    }
  ]
}
// ice.config.js
module.exports = {
  plugins: [
    ['ice-plugin-wrap-code', {
      addCodeBefore: () => {
        return 'console.log("some code before entry")';
      },
    }
  ]
}