Socket
Book a DemoInstallSign in
Socket

firebase-pnpm-workspaces

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firebase-pnpm-workspaces

Copies and links local pnpm workspace packages into Firebase projects for deployment

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

firebase-pnpm-workspaces

PNPM workspaces + Firebase deployments made easy.

Problem

Firebase functions does not support deployment of dependencies from a monorepo structure. To use dependencies which are not published to a registry, dependency code must be copied into the functions directory & referenced accordingly, prior to running firebase deploy --functions.

Solution

npx firebase-pnpm-workspaces --filter <FIREBASE_FUNCTIONS_WORKSPACE_NAME>

This command, run at the root of your monorepo:

  • Automatically builds a pnpm dependency graph of workspaces used in your firebase functions package.json
  • Copies all necessary package code into a .firebase-pnpm-workspaces tmp folder inside your firebase functions workspace
  • Modifies package.json in firebase functions workspace and in all nested dependencies to point to file: references

NOTE: Rollback of package.json changes is still TODO. Recommended use is currently only in an ephemeral environment, such as CI or in a pruned Turborepo 'out' folder (see examples)

Options

FlagAliasDefaultRequired?Description
--filter-F-Firebase functions workspace name.
Example:
--scope functions
--dir-dprocess.cwd()Path to workspace root
Example:
--dir ./out
--tmpDir-t.firebase-pnpm-workspacesCustom tmp directory folder where dependency packages will be placed
Example:
--tmpDir custom-tmp-folder

Examples

Local pruned Turborepo

A simple shell script, which:

  • Prunes & builds your Turborepo into a clean /out dir
  • Installs dependencies
  • Copies & links packages via relative file path replacement in package.json
  • Deploys to Firebase
#!/bin/sh
cd $PATH_TO_TURBOREPO_ROOT

echo 'Creating a pruned Turborepo'
pnpm turbo prune --scope=$FUNCTIONS_PACKAGE_NAME

echo 'Copying Firebase config'
cp ./{.firebaserc,firebase.json} ./out

cd ./out

echo 'Installing dependencies'
pnpm

echo 'Running Turbo build'
pnpm turbo run build --filter=$FUNCTIONS_PACKAGE_NAME --include-dependencies --no-deps --no-cache

echo 'Running firebase-pnpm-workspaces'
npx firebase-pnpm-workspaces --filter=$FUNCTIONS_PACKAGE_NAME

echo 'Deploying'
firebase deploy --force --only functions

echo 'Cleaning up ./out folder'
rm -Rf ./out

More examples soon:

  • Vanilla CI via GitHub Actions (Link coming soon)
  • Turborepo CI via GitHub Actions (Link coming soon)

FAQs

Package last updated on 03 Oct 2022

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