monorepo-next 7.3.0 → 8.0.0
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/package.json +10 -10
- package/src/build-dep-graph.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "monorepo-next",
|
3
|
-
"version": "
|
3
|
+
"version": "8.0.0",
|
4
4
|
"description": "Detach monorepo packages from normal linking",
|
5
5
|
"bin": {
|
6
6
|
"next": "bin/next.js"
|
@@ -55,20 +55,20 @@
|
|
55
55
|
},
|
56
56
|
"homepage": "https://github.com/CrowdStrike/monorepo-next#readme",
|
57
57
|
"engines": {
|
58
|
-
"node": ">=
|
58
|
+
"node": ">=14.15"
|
59
59
|
},
|
60
60
|
"dependencies": {
|
61
61
|
"conventional-changelog": "3.1.25",
|
62
62
|
"conventional-recommended-bump": "6.1.0",
|
63
63
|
"debug": "^4.3.1",
|
64
64
|
"execa": "^5.0.0",
|
65
|
-
"glob": "^
|
65
|
+
"glob": "^8.0.0",
|
66
66
|
"inquirer": "^8.0.0",
|
67
67
|
"minimatch": "^5.0.0",
|
68
|
-
"npm-packlist": "^
|
68
|
+
"npm-packlist": "^5.0.0",
|
69
69
|
"rfc6902": "^5.0.0",
|
70
|
-
"semver": "7.3.
|
71
|
-
"standard-version": "9.
|
70
|
+
"semver": "7.3.7",
|
71
|
+
"standard-version": "9.5.0",
|
72
72
|
"superset": "^2.0.1",
|
73
73
|
"tmp": "0.2.1",
|
74
74
|
"yargs": "^17.0.0"
|
@@ -81,18 +81,18 @@
|
|
81
81
|
"eslint-config-crowdstrike": "^4.0.0",
|
82
82
|
"eslint-config-crowdstrike-node": "^3.0.0",
|
83
83
|
"eslint-plugin-json-files": "^1.0.0",
|
84
|
-
"eslint-plugin-mocha": "^
|
84
|
+
"eslint-plugin-mocha": "^10.0.0",
|
85
85
|
"eslint-plugin-node": "^11.0.0",
|
86
86
|
"fixturify": "^2.1.0",
|
87
87
|
"git-fixtures": "^4.0.0",
|
88
|
-
"mocha": "^
|
88
|
+
"mocha": "^10.0.0",
|
89
89
|
"mocha-helpers": "^6.2.1",
|
90
90
|
"remark-cli": "^10.0.0",
|
91
91
|
"remark-preset-lint-crowdstrike": "^2.0.0",
|
92
92
|
"renovate-config-standard": "^2.0.0",
|
93
|
-
"sinon": "^
|
93
|
+
"sinon": "^14.0.0",
|
94
94
|
"sinon-chai": "^3.5.0",
|
95
|
-
"standard-node-template": "
|
95
|
+
"standard-node-template": "3.0.0",
|
96
96
|
"yargs-help-output": "^2.0.0"
|
97
97
|
}
|
98
98
|
}
|
package/src/build-dep-graph.js
CHANGED
@@ -85,7 +85,7 @@ async function buildDepGraph({
|
|
85
85
|
|
86
86
|
let _1dFilesArray;
|
87
87
|
if (!workspaces) {
|
88
|
-
_1dFilesArray = (await execa
|
88
|
+
_1dFilesArray = (await execa('pnpm', ['recursive', 'exec', '--', 'node', '-e', 'console.log(process.cwd())'], { cwd: workspaceCwd })).stdout
|
89
89
|
.split(/\r?\n/)
|
90
90
|
.map(workspace => path.relative(workspaceCwd, workspace));
|
91
91
|
|