@microsoft/rush 5.61.0 → 5.61.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 CHANGED
@@ -1,6 +1,30 @@
1
1
  {
2
2
  "name": "@microsoft/rush",
3
3
  "entries": [
4
+ {
5
+ "version": "5.61.1",
6
+ "tag": "@microsoft/rush_v5.61.1",
7
+ "date": "Sat, 22 Jan 2022 04:22:52 GMT",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "comment": "(EXPERIMENTAL) Allow common/config/rush/command-line.json to specify the build command as a phased command without specifying all of the options required by the schema. The remaining options will come from the default. This is already supported when a partially-specified build command has \"commandKind\" set to \"bulk\"."
12
+ },
13
+ {
14
+ "comment": "Fix an issue where Git Bash \"tar\" does not handle Windows paths correctly."
15
+ },
16
+ {
17
+ "comment": "(EXPERIMENTAL) Improve the RUSH_BUILD_CACHE_WRITE_ALLOWED environment variable behavior so that it also affects the local build cache. This saves CPU cycles on CI machines that only run a single build. It also avoids cache writes for watch mode commands."
18
+ },
19
+ {
20
+ "comment": "Refactoring to support upcoming watch mode improvements: Rework the task execution engine to interact with the task queue using the ECMAScript async iteration protocol (GitHub #3043)"
21
+ },
22
+ {
23
+ "comment": "Fix project change detection when a new project is added to a repo that uses PNPM with useWorkspaces=false (GitHub #3183)"
24
+ }
25
+ ]
26
+ }
27
+ },
4
28
  {
5
29
  "version": "5.61.0",
6
30
  "tag": "@microsoft/rush_v5.61.0",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  # Change Log - @microsoft/rush
2
2
 
3
- This log was last generated on Sat, 22 Jan 2022 03:17:59 GMT and should not be manually modified.
3
+ This log was last generated on Sat, 22 Jan 2022 04:22:52 GMT and should not be manually modified.
4
+
5
+ ## 5.61.1
6
+ Sat, 22 Jan 2022 04:22:52 GMT
7
+
8
+ ### Updates
9
+
10
+ - (EXPERIMENTAL) Allow common/config/rush/command-line.json to specify the build command as a phased command without specifying all of the options required by the schema. The remaining options will come from the default. This is already supported when a partially-specified build command has "commandKind" set to "bulk".
11
+ - Fix an issue where Git Bash "tar" does not handle Windows paths correctly.
12
+ - (EXPERIMENTAL) Improve the RUSH_BUILD_CACHE_WRITE_ALLOWED environment variable behavior so that it also affects the local build cache. This saves CPU cycles on CI machines that only run a single build. It also avoids cache writes for watch mode commands.
13
+ - Refactoring to support upcoming watch mode improvements: Rework the task execution engine to interact with the task queue using the ECMAScript async iteration protocol (GitHub #3043)
14
+ - Fix project change detection when a new project is added to a repo that uses PNPM with useWorkspaces=false (GitHub #3183)
4
15
 
5
16
  ## 5.61.0
6
17
  Sat, 22 Jan 2022 03:17:59 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/rush",
3
- "version": "5.61.0",
3
+ "version": "5.61.1",
4
4
  "description": "A professional solution for consolidating all your JavaScript projects in one Git repo",
5
5
  "keywords": [
6
6
  "install",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@microsoft/rush-lib": "5.61.0",
32
+ "@microsoft/rush-lib": "5.61.1",
33
33
  "@rushstack/node-core-library": "3.45.0",
34
34
  "colors": "~1.2.1",
35
35
  "semver": "~7.3.0"
@@ -37,15 +37,17 @@
37
37
  "devDependencies": {
38
38
  "@rushstack/eslint-config": "2.5.1",
39
39
  "@rushstack/heft": "0.44.2",
40
- "@rushstack/heft-node-rig": "1.6.0",
41
- "@rushstack/rush-amazon-s3-build-cache-plugin": "5.61.0",
42
- "@rushstack/rush-azure-storage-build-cache-plugin": "5.61.0",
40
+ "@rushstack/heft-node-rig": "1.7.0",
41
+ "@rushstack/rush-amazon-s3-build-cache-plugin": "5.61.1",
42
+ "@rushstack/rush-azure-storage-build-cache-plugin": "5.61.1",
43
43
  "@types/heft-jest": "1.0.1",
44
44
  "@types/node": "12.20.24",
45
45
  "@types/semver": "7.3.5"
46
46
  },
47
47
  "scripts": {
48
- "build": "heft test --clean",
49
- "start": "node lib/start-dev-docs.js"
48
+ "build": "heft build --clean",
49
+ "start": "node lib/start-dev-docs.js",
50
+ "_phase:build": "heft build --clean",
51
+ "_phase:test": "heft test --no-build"
50
52
  }
51
53
  }