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

isolate-package

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

isolate-package - npm Package Compare versions

Comparing version 0.0.0 to 1.0.0-beta.0

45

package.json
{
"name": "isolate-package",
"version": "0.0.0",
"description": "Coming soon",
"main": "dist/index.js",
"version": "1.0.0-beta.0",
"description": "Isolate a monorepo package by bundling the build output with its shared workspace packages and lock file to form a self-contained directory.",
"author": "Thijs Koerselman",
"license": "MIT",
"keywords": [
"monorepo",
"workspace",
"isolate",
"package",
"deploy",
"firebase",
"ci",
"pnpm",
"yarn",
"npm"
],
"type": "module",
"module": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"author": "Thijs Koerselman",
"license": "MIT",
"bin": {
"isolate": "dist/index.js"
},
"dependencies": {
"chalk": "^5.2.0",
"fs-extra": "^11.1.1",
"glob": "^10.2.2",
"lodash-es": "^4.17.21",
"source-map-support": "^0.5.21",
"tar-fs": "^2.1.1",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/node": "^20.1.0",
"@types/fs-extra": "^11.0.1",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.16.2",
"@types/source-map-support": "^0.5.6",
"@types/tar-fs": "^2.0.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
"type-fest": "^3.9.0",
"vitest": "^0.30.1"
},

@@ -19,0 +46,0 @@ "scripts": {

195

README.md
# Isolate Package
Coming soon...
Isolate a monorepo workspace package so that it can be deployed as a completely
self-contained directory with the sources of all local dependencies included.
**NOTE**: This package has only been tested with [PNPM](https://pnpm.io/) but it
was designed to be compatible with NPM and Yarn. That being said, I am
personally very happy with the switch to PNPM and I encourage anyone to give it
a try.
## Motivation
This solution was developed out of a desire to deploy to
[Firebase](https://firebase.google.com/) from a monorepo without resorting to
hacks, shell scripts and manual tasks. You can read more about this issue
[here](#the-problem-with-firebase-in-monorepos).
There is nothing Firebase specific to this solution but I am currently not aware
of any other reason to isolate a workspace package. If you find a different
use-case, I would love to hear about it.
## Features
These are the key aspects that set this approach apart from other solutions:
- Zero-config for the majority of use-cases. No manual steps involved.
- Designed to support NPM, Yarn and PNPM workspaces.
- Compatible with the firebase CLI.
- Uses a pack/unpack approach to only isolate files that would have been part of
the published package, so the resulting output only contains the necessary
files.
- Isolates dependencies recursively. If package A depends on local package B
which depends on local package C, all of them will be isolated.
- Include and adjust the lockfile so you can be sure the isolated deployment is
using the exact same versions.
- Optionally include dev dependencies in the isolated output.
## Usage
Run `pnpm add isolate-package -D` or do the equivalent for `yarn` or `npm`.
This package exposes the `isolate` executable. Once installed you can run `npx
isolate` in any package directory _after_ you have build the source files, and
by default this will produce a directory at `./isolate`.
You will probably want to add the output directory to your `.gitignore` file.
### Deploy to Firebase
This solution allows you to deploy to Firebase from multiple packages in your
monorepo, so I advise you to co-locate your `firebase.json` file with the
package, and not place it in the root of the monorepo.
In order to deploy to Firebase, the `functions.source` setting in
`firebase.json` needs to point to the isolated output folder, which would be
`./isolate` when using the default configuration.
The `predeploy` phase should first build and then isolate the output.
Here's an example using [Turborepo](https://turbo.build/) for the build process:
```json
{
"functions": {
"source": "./isolate",
"predeploy": ["turbo build", "isolate"]
}
}
```
With this configuration you can run `firebase deploy --only functions` from the
package you isolated.
If you like to deploy to Firebase Functions from multiple packages you will also
need to configure a unique `codebase` identifier for each of them. For more
information, [read
this](https://firebase.google.com/docs/functions/beta/organize-functions).
## Configuration
For most users the defaults are fine and no configuration is needed. Otherwise,
you can configure the isolate process by placing a `isolate.config.json` file in
the root of the package that you want to isolate.
Below you find a description of every available config option.
### logLevel
Type: `"info" | "debug" | "warn" | "error"`, default: `"info"`.
Because the configuration loader depends on this setting, its output is not
affected by this setting. If you want to debug the configuration set
`ISOLATE_CONFIG_LOG_LEVEL=debug` before you run `isolate`
### workspaceRoot
Type: `string`, default: `"../.."`
The relative path, from the package you want to isolate to the root of the
workspace / monorepo.
In a typical monorepo you will have a `packages` and possibly an `apps`
directory in the root of the workspace, so any package you want to isolate would
be 2 levels up from the root.
### workspacePackages
Type: `string[] | undefined`, default: `undefined`
When workspacePackages is not defined, `isolate` will try to find the packages
in the workspace by looking up the settings in `pnpm-workspace.yaml` or
`package.json` files depending on the detected package manager.
In case this fails, you can override this process by specifying globs manually.
For example `"workspacePackages": ["packages/*", "apps/*"]`. Paths are relative
from the root of the workspace.
### isolateOutDir
Type: `string`, default: `"isolate"`
The name of the isolate output directory.
### includeDevDependencies
Type: `boolean`, default: `false`
By default devDependencies are ignored and stripped from the isolated output
`package.json` files. If you enable this the devDependencies will be included
and isolated just like the production dependencies.
### tsconfigPath
Type: `string`, default: `"./tsconfig.json"`
The path to the `tsconfig.json` file relative to the package you want to
isolate. The tsconfig is only used for reading the `compilerOptions.outDir`
setting. If no tsconfig is found, possibly because you are not using Typescript
in your project, the process will fall back to the `buildOutputDir` setting.
### buildOutputDir
Type: `string | undefined`, default: `undefined`
When you are not using Typescript you can use this setting to specify where the
build output files are located.
## TODO
- [ ] Alter the pnpm lockfile
- [ ] Add support for Yarn and NPM lock files
## Used Terminology
The various package managers, while being very similar, seem to use a different
definition for the term "workspace". If you want to read the code it might be
good to know that I consider the workspace to be the monorepo itself. The
overall structure that holds all the packages. Also, in the code you see the
word manifest a lot. It refers to the contents of a package.json file.
## The problem with Firebase in monorepos
When deploying to Firebase it expects a folder with source files together with a
package.json file. This folder will be zipped and uploaded after which Firebase
will run an npm or yarn install in the cloud as part of the deployment pipeline.
In a private monorepo your Firebase package(s) typically have one or more shared
local dependencies that are never published to NPM. When Firebase tries to look
up those dependencies from the package.json they can not be found and deployment
fails.
In order to solve this you could try to use a bundler like Webpack to include
dependencies code in the bundle and then strip those packages from the list in
the package.json that is sent to Firebase, so doesn't know about them, but this
strategy quickly falls apart. If the shared packages themselves do not bundle
all of their dependencies in their build output, then those dependencies will
still need to be installed, and Firebase wouldn't know about it.
Without Firebase natively supporting monorepos, the only solution seems to be to
bundle each shared workspace dependency in a way that its build output, together
with its package.json file, becomes part of the overall bundle that is uploaded
in the Firebase deployment. This way, Firebase can find each shared package
source code, and also know what dependencies need to be installed to make that
source code work.
There are many different hacks that people have come up with [discussing this
issue](https://github.com/firebase/firebase-tools/issues/653) but they all seem
to come down to this:
- Copy the shared packages to some deployment folder
- Create a modified package.json file for the deployment that points all local
dependencies to the copied files for each shared dependency.
- Point the Firebase deploy process to that folder
The `isolate` process from this solution takes a similar approach but is more
sophisticated and hides all complexity from the user.
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