@pnpm/mount-modules 0.1.17 → 0.1.18
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/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/mount-modules",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "Mounts a node_modules directory with FUSE",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": "bin/mount-modules.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@pnpm/cafs": "3.0.11",
|
|
37
|
-
"@pnpm/lockfile-file": "4.2.
|
|
37
|
+
"@pnpm/lockfile-file": "4.2.4",
|
|
38
38
|
"@pnpm/lockfile-utils": "3.1.4",
|
|
39
39
|
"@pnpm/store-path": "^5.0.0",
|
|
40
40
|
"@pnpm/types": "7.7.1",
|
|
@@ -53,5 +53,6 @@
|
|
|
53
53
|
"pretest": "pnpm install --dir=test/__fixtures__/simple",
|
|
54
54
|
"_test": "pnpm pretest && jest",
|
|
55
55
|
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
|
|
56
|
-
}
|
|
56
|
+
},
|
|
57
|
+
"readme": "# @pnpm/mount-modules\n\n> Mounts a node_modules directory with FUSE\n\n[](https://www.npmjs.com/package/@pnpm/mount-modules)\n\n## Installation\n\n```\npnpm add @pnpm/mount-modules --global\n```\n\n## Usage\n\nBefore mounting the modules directory, all the packages should be fetched to the store. This can be done by running:\n\n```\npnpm install --lockfile-only\n```\n\nOnce the packages are in the store, run:\n\n```\nmount-modules\n```\n\nIf something goes wrong and the modules directory will be not accessible, unmout it using:\n\n```\nunmount <path to node_modules>\n```\n\n## License \n\nMIT\n"
|
|
57
58
|
}
|