New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-bump-beta

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-bump-beta

Gulp plugin to bump beta version property of versioning files

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gulp-bump-beta

Gulp plugin to bump beta version property in versioning files

Codacy Badge Build Status npm npm LICENSE Dependabot Status

System Requirements

  • NodeJS (version >= 10).

Installing

  • npm i -D gulp gulp-bump-beta

Usage

  • Create a gulpfile to run your tasks.
const gulp = require("gulp");
const beta = require("gulp-bump-beta");

const paths = { package: "./package.json", manifest: "./manifest.json" };

const bumpBeta = () => {
  return gulp
    .src(Object.values(paths))
    .pipe(beta())
    .pipe(gulp.dest("./"));
};

gulp.task("bump-beta", gulp.series(bumpBeta));

License

Copylefted (c) 2019 Henrique Carvalho da Cruz Licensed under the MIT license.

Keywords

FAQs

Package last updated on 27 Apr 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc