syncpack 6.2.0 → 6.2.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/dist/lib/disk.js +1 -1
- package/package.json +3 -2
package/dist/lib/disk.js
CHANGED
|
@@ -9,7 +9,7 @@ var read_yaml_file_1 = require("read-yaml-file");
|
|
|
9
9
|
var constants_1 = require("../constants");
|
|
10
10
|
exports.disk = {
|
|
11
11
|
globSync: function (pattern) {
|
|
12
|
-
return (0, glob_1.sync)(pattern, { absolute: true, cwd: constants_1.CWD });
|
|
12
|
+
return (0, glob_1.sync)(pattern, { ignore: '**/node_modules/**', absolute: true, cwd: constants_1.CWD });
|
|
13
13
|
},
|
|
14
14
|
readConfigFileSync: function () {
|
|
15
15
|
var rcSearch = (0, cosmiconfig_1.cosmiconfigSync)('syncpack').search();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syncpack",
|
|
3
3
|
"description": "Manage multiple package.json files, such as in Lerna Monorepos and Yarn/Pnpm Workspaces",
|
|
4
|
-
"version": "6.2.
|
|
4
|
+
"version": "6.2.1",
|
|
5
5
|
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
|
|
6
6
|
"bin": {
|
|
7
7
|
"syncpack": "dist/bin.js",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"Jamie Mason (https://github.com/JamieMason)",
|
|
21
21
|
"Luis Vieira (https://github.com/luisvieiragmr)",
|
|
22
22
|
"Marais Rossouw (https://github.com/maraisr)",
|
|
23
|
-
"Matt Sprague (https://github.com/uforic)"
|
|
23
|
+
"Matt Sprague (https://github.com/uforic)",
|
|
24
|
+
"Tom Fletcher (https://github.com/tom-fletcher)"
|
|
24
25
|
],
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"chalk": "4.1.2",
|