New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@zilero/gulp-folder-clone

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zilero/gulp-folder-clone

A Gulp plugin that can be used to clone a folder.

latest
Source
npmnpm
Version
1.0.4
Version published
Maintainers
1
Created
Source
Typing SVG

📂 Powerful Gulp plugin for cloning folders and files with transformation support.

InstallationOptionsExample

✨ Features

  • 📁 Simple folder and file cloning
  • 🔄 Custom file transformation support
  • 📝 TypeScript support
  • 🚀 Stream-based processing
  • 💡 Progress logging
  • 🛠️ Highly configurable

🚀 Installation

npm install @zilero/gulp-folder-clone --save-dev
# or
yarn add @zilero/gulp-folder-clone --dev
# or
pnpm add @zilero/gulp-folder-clone --save-dev

⚙️ Options

pluginOptions

  • Type: object
  • Required: false

pluginOptions.onBeforeCopy

  • Type: (file: Vinyl) => Promise<Vinyl> | Vinyl
  • Required: false
  • Transform file before copying

📝 Example

gulp.task('clone-with-transform', () => {
  return gulp.src('src/images/**/*')
    .pipe(GulpFolderClone({
      logFinish: true,
      onBeforeCopy: (file) => {
        // Custom transformation
        return file;
      }
    }))
    .pipe(gulp.dest('dist/images'));
});

🤝 Contributing

PRs Welcome

If you would like to contribute to the project, please create a pull request or leave feedback. We are always open to new ideas and improvements!

🐛 Issues

GitHub Issues

Found a bug? Want to request a feature? Please create an issue.

📄 License

MIT License

This project is licensed under the MIT License. See the LICENSE file for details.

Made with ❤️ by Zilero

FAQs

Package last updated on 31 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts