@rushstack/heft-web-rig 0.7.2 → 0.8.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 CHANGED
@@ -1,6 +1,26 @@
1
1
  {
2
2
  "name": "@rushstack/heft-web-rig",
3
3
  "entries": [
4
+ {
5
+ "version": "0.8.0",
6
+ "tag": "@rushstack/heft-web-rig_v0.8.0",
7
+ "date": "Thu, 20 Jan 2022 02:43:46 GMT",
8
+ "comments": {
9
+ "minor": [
10
+ {
11
+ "comment": "Update the `rush-project.json` file to follow the new schema and configure the \"build\" command output folders for the \"_phase:build\" phase."
12
+ }
13
+ ],
14
+ "dependency": [
15
+ {
16
+ "comment": "Updating dependency \"@rushstack/heft-sass-plugin\" to `0.3.4`"
17
+ },
18
+ {
19
+ "comment": "Updating dependency \"@rushstack/heft-webpack4-plugin\" to `0.3.30`"
20
+ }
21
+ ]
22
+ }
23
+ },
4
24
  {
5
25
  "version": "0.7.2",
6
26
  "tag": "@rushstack/heft-web-rig_v0.7.2",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Change Log - @rushstack/heft-web-rig
2
2
 
3
- This log was last generated on Wed, 05 Jan 2022 16:07:47 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 20 Jan 2022 02:43:46 GMT and should not be manually modified.
4
+
5
+ ## 0.8.0
6
+ Thu, 20 Jan 2022 02:43:46 GMT
7
+
8
+ ### Minor changes
9
+
10
+ - Update the `rush-project.json` file to follow the new schema and configure the "build" command output folders for the "_phase:build" phase.
4
11
 
5
12
  ## 0.7.2
6
13
  Wed, 05 Jan 2022 16:07:47 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/heft-web-rig",
3
- "version": "0.7.2",
3
+ "version": "0.8.0",
4
4
  "description": "A rig package for web browser projects that build using Heft",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -14,8 +14,8 @@
14
14
  "dependencies": {
15
15
  "@microsoft/api-extractor": "7.19.4",
16
16
  "@rushstack/heft-jest-plugin": "0.2.2",
17
- "@rushstack/heft-sass-plugin": "0.3.3",
18
- "@rushstack/heft-webpack4-plugin": "0.3.29",
17
+ "@rushstack/heft-sass-plugin": "0.3.4",
18
+ "@rushstack/heft-webpack4-plugin": "0.3.30",
19
19
  "eslint": "~8.3.0",
20
20
  "jest-environment-jsdom": "~27.4.2",
21
21
  "typescript": "~4.5.2"
@@ -1,3 +1,12 @@
1
1
  {
2
- "projectOutputFolderNames": ["dist", "lib", "lib-commonjs", "temp"]
2
+ "operationSettings": [
3
+ {
4
+ "operationName": "_phase:build",
5
+ "outputFolderNames": ["dist", "lib", "lib-commonjs", "temp"]
6
+ },
7
+ {
8
+ "operationName": "build",
9
+ "outputFolderNames": ["dist", "lib", "lib-commonjs", "temp"]
10
+ }
11
+ ]
3
12
  }