workspace-tools 0.20.0 → 0.23.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/CHANGELOG.json +54 -1
- package/CHANGELOG.md +30 -2
- package/lib/dependencies/index.d.ts +12 -0
- package/lib/dependencies/index.js +14 -0
- package/lib/{dependencies.d.ts → dependencies/transitiveDeps.d.ts} +5 -4
- package/lib/{dependencies.js → dependencies/transitiveDeps.js} +7 -11
- package/lib/graph/createDependencyMap.d.ts +7 -0
- package/lib/graph/createDependencyMap.js +26 -0
- package/lib/graph/createPackageGraph.d.ts +10 -0
- package/lib/graph/createPackageGraph.js +122 -0
- package/lib/graph/getPackageDependencies.d.ts +6 -0
- package/lib/graph/getPackageDependencies.js +20 -0
- package/lib/graph/index.d.ts +1 -0
- package/lib/graph/index.js +13 -0
- package/lib/index.d.ts +2 -2
- package/lib/index.js +2 -2
- package/lib/lockfile/index.js +2 -2
- package/lib/types/PackageGraph.d.ts +14 -0
- package/lib/types/PackageGraph.js +3 -0
- package/package.json +6 -3
- package/.github/workflows/pr.yml +0 -29
- package/.github/workflows/release.yml +0 -36
- package/.prettierrc +0 -6
- package/CODE_OF_CONDUCT.md +0 -9
- package/SECURITY.md +0 -41
- package/beachball.config.js +0 -12
- package/docs/.nojekyll +0 -1
- package/docs/assets/highlight.css +0 -22
- package/docs/assets/icons.css +0 -1043
- package/docs/assets/icons.png +0 -0
- package/docs/assets/icons@2x.png +0 -0
- package/docs/assets/main.js +0 -52
- package/docs/assets/search.js +0 -1
- package/docs/assets/style.css +0 -1414
- package/docs/assets/widgets.png +0 -0
- package/docs/assets/widgets@2x.png +0 -0
- package/docs/index.html +0 -42
- package/docs/interfaces/NpmLockFile.html +0 -1
- package/docs/interfaces/NpmSymlinkInfo.html +0 -1
- package/docs/interfaces/NpmWorkspacesInfo.html +0 -1
- package/docs/interfaces/PackageInfo.html +0 -1
- package/docs/interfaces/PackageInfos.html +0 -1
- package/docs/interfaces/PnpmLockFile.html +0 -1
- package/docs/modules.html +0 -70
- package/jest.config.js +0 -11
- package/lib/__tests__/dependencies.test.d.ts +0 -1
- package/lib/__tests__/dependencies.test.js +0 -141
- package/lib/__tests__/getChangedPackages.test.d.ts +0 -1
- package/lib/__tests__/getChangedPackages.test.js +0 -142
- package/lib/__tests__/getDefaultRemote.test.d.ts +0 -1
- package/lib/__tests__/getDefaultRemote.test.js +0 -26
- package/lib/__tests__/getInitDefaultBranch.test.d.ts +0 -1
- package/lib/__tests__/getInitDefaultBranch.test.js +0 -26
- package/lib/__tests__/getPackagesByFiles.test.d.ts +0 -1
- package/lib/__tests__/getPackagesByFiles.test.js +0 -54
- package/lib/__tests__/getScopedPackages.test.d.ts +0 -1
- package/lib/__tests__/getScopedPackages.test.js +0 -74
- package/lib/__tests__/getWorkspaceRoot.test.d.ts +0 -1
- package/lib/__tests__/getWorkspaceRoot.test.js +0 -40
- package/lib/__tests__/getWorkspaces.test.d.ts +0 -1
- package/lib/__tests__/getWorkspaces.test.js +0 -122
- package/lib/__tests__/lockfile.test.d.ts +0 -1
- package/lib/__tests__/lockfile.test.js +0 -42
- package/lib/__tests__/queryLockFile.test.d.ts +0 -1
- package/lib/__tests__/queryLockFile.test.js +0 -43
- package/lib/graph.d.ts +0 -6
- package/lib/graph.js +0 -27
package/beachball.config.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
scope: ["!src/__fixtures__/**/*"],
|
|
3
|
-
ignorePatterns: [
|
|
4
|
-
".github/**",
|
|
5
|
-
".prettierrc",
|
|
6
|
-
"jest.config.js",
|
|
7
|
-
"src/__fixtures__/**",
|
|
8
|
-
"src/__tests__/**",
|
|
9
|
-
// This prevents dependabot from being blocked by change file requirements for lock file-only changes
|
|
10
|
-
"yarn.lock",
|
|
11
|
-
],
|
|
12
|
-
};
|
package/docs/.nojekyll
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--light-code-background: #F5F5F5;
|
|
3
|
-
--dark-code-background: #1E1E1E;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
@media (prefers-color-scheme: light) { :root {
|
|
7
|
-
--code-background: var(--light-code-background);
|
|
8
|
-
} }
|
|
9
|
-
|
|
10
|
-
@media (prefers-color-scheme: dark) { :root {
|
|
11
|
-
--code-background: var(--dark-code-background);
|
|
12
|
-
} }
|
|
13
|
-
|
|
14
|
-
body.light {
|
|
15
|
-
--code-background: var(--light-code-background);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
body.dark {
|
|
19
|
-
--code-background: var(--dark-code-background);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
pre, code { background: var(--code-background); }
|