workspace-tools 0.19.0 → 0.19.3

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": "Thu, 05 May 2022 19:40:19 GMT",
5
+ "date": "Thu, 23 Jun 2022 19:10:01 GMT",
6
+ "tag": "workspace-tools_v0.19.3",
7
+ "version": "0.19.3",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "elcraig@microsoft.com",
12
+ "package": "workspace-tools",
13
+ "comment": "Move typedoc to devDependencies",
14
+ "commit": "8dbb9af66b8e1564734861d23849957b22dbe870"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Thu, 23 Jun 2022 18:52:05 GMT",
21
+ "tag": "workspace-tools_v0.19.2",
22
+ "version": "0.19.2",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "elcraig@microsoft.com",
27
+ "package": "workspace-tools",
28
+ "comment": "Allow full spawnSync options for git methods",
29
+ "commit": "cf0a0d77be58988e411d0349c8a009642770696e"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Fri, 03 Jun 2022 16:57:07 GMT",
36
+ "tag": "workspace-tools_v0.19.1",
37
+ "version": "0.19.1",
38
+ "comments": {
39
+ "patch": [
40
+ {
41
+ "author": "nickykalu@microsoft.com",
42
+ "package": "workspace-tools",
43
+ "comment": "properly split git status --short output",
44
+ "commit": "81c4609bc4eea797637b6e3e977f0cdfd8849d54"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Thu, 05 May 2022 19:40:25 GMT",
6
51
  "tag": "workspace-tools_v0.19.0",
7
52
  "version": "0.19.0",
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 Thu, 05 May 2022 19:40:19 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 23 Jun 2022 19:10:01 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.19.3
8
+
9
+ Thu, 23 Jun 2022 19:10:01 GMT
10
+
11
+ ### Patches
12
+
13
+ - Move typedoc to devDependencies (elcraig@microsoft.com)
14
+
15
+ ## 0.19.2
16
+
17
+ Thu, 23 Jun 2022 18:52:05 GMT
18
+
19
+ ### Patches
20
+
21
+ - Allow full spawnSync options for git methods (elcraig@microsoft.com)
22
+
23
+ ## 0.19.1
24
+
25
+ Fri, 03 Jun 2022 16:57:07 GMT
26
+
27
+ ### Patches
28
+
29
+ - properly split git status --short output (nickykalu@microsoft.com)
30
+
7
31
  ## 0.19.0
8
32
 
9
- Thu, 05 May 2022 19:40:19 GMT
33
+ Thu, 05 May 2022 19:40:25 GMT
10
34
 
11
35
  ### Minor changes
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); }