@pnpm/mount-modules 0.1.20 → 0.1.21

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.
Files changed (1) hide show
  1. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/mount-modules",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "Mounts a node_modules directory with FUSE",
5
5
  "main": "lib/index.js",
6
6
  "bin": "bin/mount-modules.js",
@@ -30,13 +30,13 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "@pnpm/logger": "^4.0.0",
33
- "@pnpm/mount-modules": "0.1.20",
33
+ "@pnpm/mount-modules": "0.1.21",
34
34
  "rimraf": "^3.0.2"
35
35
  },
36
36
  "dependencies": {
37
37
  "@pnpm/cafs": "3.0.13",
38
38
  "@pnpm/lockfile-file": "4.2.6",
39
- "@pnpm/lockfile-utils": "3.1.6",
39
+ "@pnpm/lockfile-utils": "3.2.0",
40
40
  "@pnpm/store-path": "^5.0.0",
41
41
  "@pnpm/types": "7.9.0",
42
42
  "dependency-path": "8.0.10",
@@ -53,7 +53,7 @@
53
53
  "test": "pnpm run compile && pnpm run _test",
54
54
  "pretest": "pnpm install --dir=test/__fixtures__/simple",
55
55
  "_test": "pnpm pretest && jest",
56
- "compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
56
+ "compile": "tsc --build && pnpm run lint -- --fix"
57
57
  },
58
58
  "readme": "# @pnpm/mount-modules\n\n> Mounts a node_modules directory with FUSE\n\n[![npm version](https://img.shields.io/npm/v/@pnpm/mount-modules.svg)](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"
59
59
  }