workspace-tools 0.18.4 → 0.19.2

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 CHANGED
@@ -2,7 +2,52 @@
2
2
  "name": "workspace-tools",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 20 Apr 2022 16:48:59 GMT",
5
+ "date": "Thu, 23 Jun 2022 18:51:59 GMT",
6
+ "tag": "workspace-tools_v0.19.2",
7
+ "version": "0.19.2",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "elcraig@microsoft.com",
12
+ "package": "workspace-tools",
13
+ "comment": "Allow full spawnSync options for git methods",
14
+ "commit": "cf0a0d77be58988e411d0349c8a009642770696e"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Fri, 03 Jun 2022 16:57:07 GMT",
21
+ "tag": "workspace-tools_v0.19.1",
22
+ "version": "0.19.1",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "nickykalu@microsoft.com",
27
+ "package": "workspace-tools",
28
+ "comment": "properly split git status --short output",
29
+ "commit": "81c4609bc4eea797637b6e3e977f0cdfd8849d54"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Thu, 05 May 2022 19:40:25 GMT",
36
+ "tag": "workspace-tools_v0.19.0",
37
+ "version": "0.19.0",
38
+ "comments": {
39
+ "minor": [
40
+ {
41
+ "author": "kchau@microsoft.com",
42
+ "package": "workspace-tools",
43
+ "comment": "adds a new API to allow retrieving a list of packages affected by files and also by git ref range",
44
+ "commit": "8d3b9dd8a8e1831b56a5f1606491be403debcbed"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Wed, 20 Apr 2022 16:49:02 GMT",
6
51
  "tag": "workspace-tools_v0.18.4",
7
52
  "version": "0.18.4",
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 Wed, 20 Apr 2022 16:48:59 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 23 Jun 2022 18:51:59 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.19.2
8
+
9
+ Thu, 23 Jun 2022 18:51:59 GMT
10
+
11
+ ### Patches
12
+
13
+ - Allow full spawnSync options for git methods (elcraig@microsoft.com)
14
+
15
+ ## 0.19.1
16
+
17
+ Fri, 03 Jun 2022 16:57:07 GMT
18
+
19
+ ### Patches
20
+
21
+ - properly split git status --short output (nickykalu@microsoft.com)
22
+
23
+ ## 0.19.0
24
+
25
+ Thu, 05 May 2022 19:40:25 GMT
26
+
27
+ ### Minor changes
28
+
29
+ - adds a new API to allow retrieving a list of packages affected by files and also by git ref range (kchau@microsoft.com)
30
+
7
31
  ## 0.18.4
8
32
 
9
- Wed, 20 Apr 2022 16:48:59 GMT
33
+ Wed, 20 Apr 2022 16:49:02 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); }