@rushstack/heft-web-rig 0.20.10 → 0.21.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/heft-web-rig",
3
- "version": "0.20.10",
3
+ "version": "0.21.1",
4
4
  "description": "A rig package for web browser projects that build using Heft",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -9,7 +9,7 @@
9
9
  "directory": "rigs/heft-web-rig"
10
10
  },
11
11
  "peerDependencies": {
12
- "@rushstack/heft": "^0.64.8"
12
+ "@rushstack/heft": "^0.65.1"
13
13
  },
14
14
  "dependencies": {
15
15
  "@types/heft-jest": "1.0.1",
@@ -32,17 +32,17 @@
32
32
  "webpack-bundle-analyzer": "~4.5.0",
33
33
  "webpack-merge": "~5.8.0",
34
34
  "webpack": "~5.82.1",
35
+ "@microsoft/api-extractor": "7.40.4",
35
36
  "@rushstack/eslint-config": "3.6.4",
36
- "@microsoft/api-extractor": "7.40.3",
37
- "@rushstack/heft-api-extractor-plugin": "0.3.8",
38
- "@rushstack/heft-jest-plugin": "0.11.8",
39
- "@rushstack/heft-lint-plugin": "0.3.8",
40
- "@rushstack/heft-typescript-plugin": "0.3.8",
41
- "@rushstack/heft-sass-plugin": "0.13.11",
42
- "@rushstack/heft-webpack5-plugin": "0.9.25"
37
+ "@rushstack/heft-jest-plugin": "0.11.10",
38
+ "@rushstack/heft-sass-plugin": "0.13.13",
39
+ "@rushstack/heft-api-extractor-plugin": "0.3.10",
40
+ "@rushstack/heft-lint-plugin": "0.3.10",
41
+ "@rushstack/heft-webpack5-plugin": "0.9.27",
42
+ "@rushstack/heft-typescript-plugin": "0.3.10"
43
43
  },
44
44
  "devDependencies": {
45
- "@rushstack/heft": "0.64.8"
45
+ "@rushstack/heft": "0.65.1"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "",
@@ -22,7 +22,23 @@
22
22
  "cleanFiles": [{ "includeGlobs": ["dist", "lib", "lib-amd", "lib-commonjs", "lib-es6"] }],
23
23
 
24
24
  "tasksByName": {
25
+ "set-browserslist-ignore-old-data-env-var": {
26
+ "taskPlugin": {
27
+ "pluginPackage": "@rushstack/heft",
28
+ "pluginName": "set-environment-variables-plugin",
29
+ "options": {
30
+ "environmentVariablesToSet": {
31
+ // Suppress the "Browserslist: caniuse-lite is outdated" warning. Although the warning is
32
+ // potentially useful, the check is performed in a way that is nondeterministic and can cause
33
+ // Rush pipelines to fail. Moreover, the outdated version is often irrelevant and/or nontrivial
34
+ // to upgrade. See this thread for details: https://github.com/microsoft/rushstack/issues/2981
35
+ "BROWSERSLIST_IGNORE_OLD_DATA": "1"
36
+ }
37
+ }
38
+ }
39
+ },
25
40
  "sass": {
41
+ "taskDependencies": ["set-browserslist-ignore-old-data-env-var"],
26
42
  "taskPlugin": {
27
43
  "pluginPackage": "@rushstack/heft-sass-plugin"
28
44
  }
@@ -22,13 +22,29 @@
22
22
  "cleanFiles": [{ "includeGlobs": ["dist", "lib", "lib-amd", "lib-commonjs", "lib-es6"] }],
23
23
 
24
24
  "tasksByName": {
25
- "sass-typings": {
25
+ "set-browserslist-ignore-old-data-env-var": {
26
+ "taskPlugin": {
27
+ "pluginPackage": "@rushstack/heft",
28
+ "pluginName": "set-environment-variables-plugin",
29
+ "options": {
30
+ "environmentVariablesToSet": {
31
+ // Suppress the "Browserslist: caniuse-lite is outdated" warning. Although the warning is
32
+ // potentially useful, the check is performed in a way that is nondeterministic and can cause
33
+ // Rush pipelines to fail. Moreover, the outdated version is often irrelevant and/or nontrivial
34
+ // to upgrade. See this thread for details: https://github.com/microsoft/rushstack/issues/2981
35
+ "BROWSERSLIST_IGNORE_OLD_DATA": "1"
36
+ }
37
+ }
38
+ }
39
+ },
40
+ "sass": {
41
+ "taskDependencies": ["set-browserslist-ignore-old-data-env-var"],
26
42
  "taskPlugin": {
27
43
  "pluginPackage": "@rushstack/heft-sass-plugin"
28
44
  }
29
45
  },
30
46
  "typescript": {
31
- "taskDependencies": ["sass-typings"],
47
+ "taskDependencies": ["sass"],
32
48
  "taskPlugin": {
33
49
  "pluginPackage": "@rushstack/heft-typescript-plugin"
34
50
  }