@pnpm/build-modules 7.2.1 → 7.2.5

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -1
  3. package/package.json +13 -8
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/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  ## Installation
10
10
 
11
11
  ```sh
12
- <pnpm|npm|yarn> add @pnpm/build-modules
12
+ pnpm add @pnpm/build-modules
13
13
  ```
14
14
 
15
15
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/build-modules",
3
- "version": "7.2.1",
3
+ "version": "7.2.5",
4
4
  "description": "Build packages in node_modules",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -23,19 +23,23 @@
23
23
  "url": "https://github.com/pnpm/pnpm/issues"
24
24
  },
25
25
  "homepage": "https://github.com/pnpm/pnpm/blob/master/packages/build-modules#readme",
26
+ "peerDependencies": {
27
+ "@pnpm/logger": "^4.0.0"
28
+ },
26
29
  "dependencies": {
27
30
  "@pnpm/constants": "5.0.0",
28
- "@pnpm/core-loggers": "6.1.0",
29
- "@pnpm/lifecycle": "12.1.1",
30
- "@pnpm/link-bins": "6.2.6",
31
- "@pnpm/read-package-json": "5.0.7",
32
- "@pnpm/store-controller-types": "11.0.8",
33
- "@pnpm/types": "7.7.0",
31
+ "@pnpm/core-loggers": "6.1.3",
32
+ "@pnpm/lifecycle": "12.1.4",
33
+ "@pnpm/link-bins": "6.2.9",
34
+ "@pnpm/read-package-json": "5.0.10",
35
+ "@pnpm/store-controller-types": "11.0.11",
36
+ "@pnpm/types": "7.9.0",
34
37
  "graph-sequencer": "2.0.0",
35
38
  "ramda": "^0.27.1",
36
39
  "run-groups": "^3.0.1"
37
40
  },
38
41
  "devDependencies": {
42
+ "@pnpm/build-modules": "7.2.5",
39
43
  "@pnpm/logger": "^4.0.0",
40
44
  "@types/ramda": "0.27.39"
41
45
  },
@@ -44,5 +48,6 @@
44
48
  "lint": "eslint src/**/*.ts",
45
49
  "test": "pnpm run compile",
46
50
  "compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
47
- }
51
+ },
52
+ "readme": "# @pnpm/build-modules\n\n> Build packages in node_modules\n\n<!--@shields('npm')-->\n[![npm version](https://img.shields.io/npm/v/@pnpm/build-modules.svg)](https://www.npmjs.com/package/@pnpm/build-modules)\n<!--/@-->\n\n## Installation\n\n```sh\npnpm add @pnpm/build-modules\n```\n\n## License\n\nMIT\n"
48
53
  }