@yarnpkg/plugin-essentials 4.1.0 → 4.1.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/lib/commands/install.js +2 -2
- package/package.json +3 -3
package/lib/commands/install.js
CHANGED
|
@@ -289,11 +289,11 @@ YarnCommand.usage = clipanion_1.Command.Usage({
|
|
|
289
289
|
|
|
290
290
|
- **Fetch:** Then we download all the dependencies if needed, and make sure that they're all stored within our cache (check the value of \`cacheFolder\` in \`yarn config\` to see where the cache files are stored).
|
|
291
291
|
|
|
292
|
-
- **Link:** Then we send the dependency tree information to internal plugins tasked with writing them on the disk in some form (for example by generating the
|
|
292
|
+
- **Link:** Then we send the dependency tree information to internal plugins tasked with writing them on the disk in some form (for example by generating the \`.pnp.cjs\` file you might know).
|
|
293
293
|
|
|
294
294
|
- **Build:** Once the dependency tree has been written on the disk, the package manager will now be free to run the build scripts for all packages that might need it, in a topological order compatible with the way they depend on one another. See https://yarnpkg.com/advanced/lifecycle-scripts for detail.
|
|
295
295
|
|
|
296
|
-
Note that running this command is not part of the recommended workflow. Yarn supports zero-installs, which means that as long as you store your cache and your
|
|
296
|
+
Note that running this command is not part of the recommended workflow. Yarn supports zero-installs, which means that as long as you store your cache and your \`.pnp.cjs\` file inside your repository, everything will work without requiring any install right after cloning your repository or switching branches.
|
|
297
297
|
|
|
298
298
|
If the \`--immutable\` option is set (defaults to true on CI), Yarn will abort with an error exit code if the lockfile was to be modified (other paths can be added using the \`immutablePatterns\` configuration setting). For backward compatibility we offer an alias under the name of \`--frozen-lockfile\`, but it will be removed in a later release.
|
|
299
299
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarnpkg/plugin-essentials",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"license": "BSD-2-Clause",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"typanion": "^3.14.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@yarnpkg/cli": "^4.1.
|
|
23
|
+
"@yarnpkg/cli": "^4.1.1",
|
|
24
24
|
"@yarnpkg/core": "^4.0.3",
|
|
25
25
|
"@yarnpkg/plugin-git": "^3.0.0"
|
|
26
26
|
},
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@types/lodash": "^4.14.136",
|
|
29
29
|
"@types/micromatch": "^4.0.1",
|
|
30
30
|
"@types/semver": "^7.1.0",
|
|
31
|
-
"@yarnpkg/cli": "^4.1.
|
|
31
|
+
"@yarnpkg/cli": "^4.1.1",
|
|
32
32
|
"@yarnpkg/core": "^4.0.3",
|
|
33
33
|
"@yarnpkg/plugin-git": "^3.0.0"
|
|
34
34
|
},
|