workspace-tools 0.18.3 → 0.19.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/CHANGELOG.json +46 -1
- package/CHANGELOG.md +26 -2
- package/docs/.nojekyll +1 -0
- package/docs/assets/highlight.css +22 -0
- package/docs/assets/icons.css +1043 -0
- package/docs/assets/icons.png +0 -0
- package/docs/assets/icons@2x.png +0 -0
- package/docs/assets/main.js +52 -0
- package/docs/assets/search.js +1 -0
- package/docs/assets/style.css +1414 -0
- package/docs/assets/widgets.png +0 -0
- package/docs/assets/widgets@2x.png +0 -0
- package/docs/index.html +42 -0
- package/docs/interfaces/NpmLockFile.html +1 -0
- package/docs/interfaces/NpmSymlinkInfo.html +1 -0
- package/docs/interfaces/NpmWorkspacesInfo.html +1 -0
- package/docs/interfaces/PackageInfo.html +1 -0
- package/docs/interfaces/PackageInfos.html +1 -0
- package/docs/interfaces/PnpmLockFile.html +1 -0
- package/docs/modules.html +70 -0
- package/lib/__tests__/getChangedPackages.test.js +17 -0
- package/lib/__tests__/getPackagesByFiles.test.d.ts +1 -0
- package/lib/__tests__/getPackagesByFiles.test.js +54 -0
- package/lib/git.js +5 -10
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/workspaces/getChangedPackages.d.ts +18 -0
- package/lib/workspaces/getChangedPackages.js +34 -27
- package/lib/workspaces/getPackagesByFiles.d.ts +10 -0
- package/lib/workspaces/getPackagesByFiles.js +38 -0
- package/package.json +7 -3
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,52 @@
|
|
|
2
2
|
"name": "workspace-tools",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Fri, 03 Jun 2022 16:57:02 GMT",
|
|
6
|
+
"tag": "workspace-tools_v0.19.1",
|
|
7
|
+
"version": "0.19.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "nickykalu@microsoft.com",
|
|
12
|
+
"package": "workspace-tools",
|
|
13
|
+
"comment": "properly split git status --short output",
|
|
14
|
+
"commit": "81c4609bc4eea797637b6e3e977f0cdfd8849d54"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Thu, 05 May 2022 19:40:25 GMT",
|
|
21
|
+
"tag": "workspace-tools_v0.19.0",
|
|
22
|
+
"version": "0.19.0",
|
|
23
|
+
"comments": {
|
|
24
|
+
"minor": [
|
|
25
|
+
{
|
|
26
|
+
"author": "kchau@microsoft.com",
|
|
27
|
+
"package": "workspace-tools",
|
|
28
|
+
"comment": "adds a new API to allow retrieving a list of packages affected by files and also by git ref range",
|
|
29
|
+
"commit": "8d3b9dd8a8e1831b56a5f1606491be403debcbed"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"date": "Wed, 20 Apr 2022 16:49:02 GMT",
|
|
36
|
+
"tag": "workspace-tools_v0.18.4",
|
|
37
|
+
"version": "0.18.4",
|
|
38
|
+
"comments": {
|
|
39
|
+
"patch": [
|
|
40
|
+
{
|
|
41
|
+
"author": "kchau@microsoft.com",
|
|
42
|
+
"package": "workspace-tools",
|
|
43
|
+
"comment": "fixes a potential security issue where fetch --upload-pack can allow for command injection",
|
|
44
|
+
"commit": "9bc7e65ce497f87e1f363fd47b8f802f3d3cd978"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"date": "Sat, 09 Apr 2022 15:51:14 GMT",
|
|
6
51
|
"tag": "workspace-tools_v0.18.3",
|
|
7
52
|
"version": "0.18.3",
|
|
8
53
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,36 @@
|
|
|
1
1
|
# Change Log - workspace-tools
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 03 Jun 2022 16:57:02 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.19.1
|
|
8
|
+
|
|
9
|
+
Fri, 03 Jun 2022 16:57:02 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- properly split git status --short output (nickykalu@microsoft.com)
|
|
14
|
+
|
|
15
|
+
## 0.19.0
|
|
16
|
+
|
|
17
|
+
Thu, 05 May 2022 19:40:25 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- adds a new API to allow retrieving a list of packages affected by files and also by git ref range (kchau@microsoft.com)
|
|
22
|
+
|
|
23
|
+
## 0.18.4
|
|
24
|
+
|
|
25
|
+
Wed, 20 Apr 2022 16:49:02 GMT
|
|
26
|
+
|
|
27
|
+
### Patches
|
|
28
|
+
|
|
29
|
+
- fixes a potential security issue where fetch --upload-pack can allow for command injection (kchau@microsoft.com)
|
|
30
|
+
|
|
7
31
|
## 0.18.3
|
|
8
32
|
|
|
9
|
-
Sat, 09 Apr 2022 15:51:
|
|
33
|
+
Sat, 09 Apr 2022 15:51:14 GMT
|
|
10
34
|
|
|
11
35
|
### Patches
|
|
12
36
|
|
package/docs/.nojekyll
ADDED
|
@@ -0,0 +1 @@
|
|
|
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.
|
|
@@ -0,0 +1,22 @@
|
|
|
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); }
|