Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rushstack/rush-azure-storage-build-cache-plugin

Package Overview
Dependencies
Maintainers
3
Versions
266
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rushstack/rush-azure-storage-build-cache-plugin

Rush plugin for Azure storage cloud build cache

  • 5.141.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
248K
decreased by-17.85%
Maintainers
3
Weekly downloads
 
Created

What is @rushstack/rush-azure-storage-build-cache-plugin?

@rushstack/rush-azure-storage-build-cache-plugin is a plugin for the Rush build system that enables caching of build outputs in Azure Storage. This can significantly speed up build times by reusing previously built artifacts stored in Azure Blob Storage.

What are @rushstack/rush-azure-storage-build-cache-plugin's main functionalities?

Configuring Azure Storage Build Cache

This feature allows you to configure the plugin to use Azure Blob Storage for caching build outputs. You need to provide your Azure Storage account name, container name, and account key.

{
  "cacheProvider": "azure-blob-storage",
  "azureBlobStorageConfiguration": {
    "storageAccountName": "<your-storage-account-name>",
    "storageContainerName": "<your-container-name>",
    "storageAccountKey": "<your-storage-account-key>"
  }
}

Enabling the Plugin in rush.json

This feature demonstrates how to enable the Azure Storage build cache plugin in the rush.json configuration file. By setting the 'enabled' property to true and specifying the Azure Blob Storage configuration, you activate the caching mechanism.

{
  "buildCache": {
    "enabled": true,
    "cacheProvider": "azure-blob-storage",
    "azureBlobStorageConfiguration": {
      "storageAccountName": "<your-storage-account-name>",
      "storageContainerName": "<your-container-name>",
      "storageAccountKey": "<your-storage-account-key>"
    }
  }
}

Other packages similar to @rushstack/rush-azure-storage-build-cache-plugin

FAQs

Package last updated on 02 Dec 2024

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