@rushstack/heft-web-rig 0.28.17 → 0.29.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 +12 -0
- package/CHANGELOG.md +8 -1
- package/package.json +5 -5
- package/profiles/app/config/heft.json +3 -1
- package/profiles/library/config/heft.json +3 -1
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/heft-web-rig",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.29.0",
|
|
6
|
+
"tag": "@rushstack/heft-web-rig_v0.29.0",
|
|
7
|
+
"date": "Wed, 09 Jul 2025 04:01:17 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Clean the temp/sass-ts folder."
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
4
16
|
{
|
|
5
17
|
"version": "0.28.17",
|
|
6
18
|
"tag": "@rushstack/heft-web-rig_v0.28.17",
|
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
|
|
3
|
+
This log was last generated on Wed, 09 Jul 2025 04:01:17 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.29.0
|
|
6
|
+
Wed, 09 Jul 2025 04:01:17 GMT
|
|
7
|
+
|
|
8
|
+
### Minor changes
|
|
9
|
+
|
|
10
|
+
- Clean the temp/sass-ts folder.
|
|
4
11
|
|
|
5
12
|
## 0.28.17
|
|
6
13
|
Thu, 26 Jun 2025 18:57:04 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/heft-web-rig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"description": "A rig package for web browser projects that build using Heft",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"webpack": "~5.98.0",
|
|
35
35
|
"@microsoft/api-extractor": "7.52.8",
|
|
36
36
|
"@rushstack/heft-api-extractor-plugin": "0.4.8",
|
|
37
|
-
"@rushstack/heft-lint-plugin": "0.7.0",
|
|
38
|
-
"@rushstack/heft-jest-plugin": "0.16.9",
|
|
39
37
|
"@rushstack/eslint-config": "4.4.0",
|
|
38
|
+
"@rushstack/heft-jest-plugin": "0.16.9",
|
|
39
|
+
"@rushstack/heft-lint-plugin": "0.7.0",
|
|
40
40
|
"@rushstack/heft-sass-plugin": "0.17.8",
|
|
41
|
-
"@rushstack/heft-
|
|
42
|
-
"@rushstack/heft-
|
|
41
|
+
"@rushstack/heft-webpack5-plugin": "0.11.34",
|
|
42
|
+
"@rushstack/heft-typescript-plugin": "0.9.8"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@rushstack/heft": "0.74.0"
|
|
@@ -21,7 +21,9 @@
|
|
|
21
21
|
|
|
22
22
|
"phasesByName": {
|
|
23
23
|
"build": {
|
|
24
|
-
"cleanFiles": [
|
|
24
|
+
"cleanFiles": [
|
|
25
|
+
{ "includeGlobs": ["dist", "lib", "lib-amd", "lib-commonjs", "lib-es6", "temp/sass-ts"] }
|
|
26
|
+
],
|
|
25
27
|
|
|
26
28
|
"tasksByName": {
|
|
27
29
|
"set-browserslist-ignore-old-data-env-var": {
|
|
@@ -21,7 +21,9 @@
|
|
|
21
21
|
|
|
22
22
|
"phasesByName": {
|
|
23
23
|
"build": {
|
|
24
|
-
"cleanFiles": [
|
|
24
|
+
"cleanFiles": [
|
|
25
|
+
{ "includeGlobs": ["dist", "lib", "lib-amd", "lib-commonjs", "lib-es6", "temp/sass-ts"] }
|
|
26
|
+
],
|
|
25
27
|
|
|
26
28
|
"tasksByName": {
|
|
27
29
|
"set-browserslist-ignore-old-data-env-var": {
|