Skip to content

Zilero232/gulp-plugins-hub

Gulp Logo
Typing SVG

PRs Welcome License TypeScript Gulp

AboutPluginsInstallationFeaturesExampleDocumentationContributingSupport

🎯 About

Welcome to Gulp Plugins Hub – a collection of powerful, type-safe Gulp plugins designed to supercharge your development workflow. Built with modern development practices in mind, our plugins offer seamless integration, exceptional performance, and extensive customization options.

📦 Plugins

🏭 Core Tools

📁 File Management

⚡ Optimization

🚀 Installation

# Using npm
npm install @zilero/[plugin-name] --save-dev

# Using yarn
yarn add @zilero/[plugin-name] --dev

# Using pnpm
pnpm add @zilero/[plugin-name] --save-dev

✨ Features

Feature Description
🔒 Type Safety Full TypeScript support with accurate types
🚀 Performance Optimized stream processing for speed
📦 Modularity Use only what you need
🛠️ Configurable Extensive options for customization
📝 Logging Detailed progress and error reporting
🔄 Hooks Pre/Post processing capabilities

📝 Example

import { src, dest } from 'gulp';

import GulpConditional from '@zilero/gulp-conditional';
import GulpJsSqueezer from '@zilero/gulp-js-squeezer';
import GulpArchiveCreator from '@zilero/gulp-archive-creator';

export const build = () => {
  return src('src/**/*.js')
    .pipe(GulpConditional({
      handlers: [{
        condition: () => process.env.NODE_ENV === 'production',
        handler: () => GulpJsSqueezer({
          minifyOptions: { compress: true }
        })
      }]
    }))
    .pipe(GulpArchiveCreator({
      format: 'zip',
      pluginOptions: {
        archiveName: 'build'
      }
    }))
    .pipe(dest('dist'));
};

📚 Documentation

Detailed documentation for each plugin is available in their respective directories. Click the plugin names above to learn more.

🤝 Contributing

We love your input! Check out our Contributing Guide to get started.

💬 Support

📄 License

MIT © Zilero


Show your support

⭐️ Star us on GitHub — it motivates us a lot!

Made with ❤️ by Zilero

About

🌟Monorepo that offers a powerful collection of Gulp plugins to enhance your workflow with gulp.

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •