@pnpm/mount-modules 0.1.16 → 0.1.20

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 (2) hide show
  1. package/LICENSE +1 -1
  2. package/package.json +9 -7
package/LICENSE CHANGED
@@ -1,7 +1,7 @@
1
1
  The MIT License (MIT)
2
2
 
3
3
  Copyright (c) 2015-2016 Rico Sta. Cruz and other contributors
4
- Copyright (c) 2016-2021 Zoltan Kochan and other contributors
4
+ Copyright (c) 2016-2022 Zoltan Kochan and other contributors
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/mount-modules",
3
- "version": "0.1.16",
3
+ "version": "0.1.20",
4
4
  "description": "Mounts a node_modules directory with FUSE",
5
5
  "main": "lib/index.js",
6
6
  "bin": "bin/mount-modules.js",
@@ -30,15 +30,16 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "@pnpm/logger": "^4.0.0",
33
+ "@pnpm/mount-modules": "0.1.20",
33
34
  "rimraf": "^3.0.2"
34
35
  },
35
36
  "dependencies": {
36
- "@pnpm/cafs": "3.0.10",
37
- "@pnpm/lockfile-file": "4.2.2",
38
- "@pnpm/lockfile-utils": "3.1.3",
37
+ "@pnpm/cafs": "3.0.13",
38
+ "@pnpm/lockfile-file": "4.2.6",
39
+ "@pnpm/lockfile-utils": "3.1.6",
39
40
  "@pnpm/store-path": "^5.0.0",
40
- "@pnpm/types": "7.7.0",
41
- "dependency-path": "8.0.7",
41
+ "@pnpm/types": "7.9.0",
42
+ "dependency-path": "8.0.10",
42
43
  "hyperdrive-schemas": "^2.0.0",
43
44
  "load-json-file": "^6.2.0",
44
45
  "normalize-path": "^3.0.0"
@@ -53,5 +54,6 @@
53
54
  "pretest": "pnpm install --dir=test/__fixtures__/simple",
54
55
  "_test": "pnpm pretest && jest",
55
56
  "compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
56
- }
57
+ },
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"
57
59
  }