isolate-package 1.6.2 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -5
- package/dist/index.mjs +400 -356
- package/dist/index.mjs.map +1 -1
- package/dist/isolate-bin.mjs +400 -356
- package/dist/isolate-bin.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
# Isolate Package
|
|
2
2
|
|
|
3
|
-
Isolate a monorepo workspace package to form a self-contained deployable package
|
|
4
|
-
that includes internal dependencies and a compatible lockfile.
|
|
5
|
-
|
|
6
3
|
<!-- TOC -->
|
|
7
4
|
|
|
5
|
+
- [Introduction](#introduction)
|
|
8
6
|
- [Features](#features)
|
|
9
7
|
- [Motivation](#motivation)
|
|
10
8
|
- [Install](#install)
|
|
@@ -31,8 +29,7 @@ that includes internal dependencies and a compatible lockfile.
|
|
|
31
29
|
- [workspaceRoot](#workspaceroot)
|
|
32
30
|
- [Troubleshooting](#troubleshooting)
|
|
33
31
|
- [Lockfiles](#lockfiles)
|
|
34
|
-
- [PNPM](#pnpm)
|
|
35
|
-
- [NPM](#npm)
|
|
32
|
+
- [NPM and PNPM](#npm-and-pnpm)
|
|
36
33
|
- [Yarn](#yarn)
|
|
37
34
|
- [A Partial Workaround](#a-partial-workaround)
|
|
38
35
|
- [Different Package Managers](#different-package-managers)
|
|
@@ -41,6 +38,12 @@ that includes internal dependencies and a compatible lockfile.
|
|
|
41
38
|
|
|
42
39
|
<!-- /TOC -->
|
|
43
40
|
|
|
41
|
+
## Introduction
|
|
42
|
+
|
|
43
|
+
Isolate a monorepo workspace package to form a self-contained deployable package
|
|
44
|
+
that includes internal dependencies and a compatible lockfile. The internal
|
|
45
|
+
packages structure is preserved, so dependencies are not bundled.
|
|
46
|
+
|
|
44
47
|
## Features
|
|
45
48
|
|
|
46
49
|
- Isolate a monorepo package with its internal dependencies to form a
|