@rushstack/heft-web-rig 0.9.3 → 0.9.6

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -23,13 +23,13 @@ To enable it, add a **rig.json** file to your project, as shown below:
23
23
  ```
24
24
 
25
25
  The config files provided by this rig profile can be found in the [heft-web-rig/profiles/library](
26
- https://github.com/microsoft/rushstack/tree/master/rigs/heft-web-rig/profiles/library) source folder.
26
+ https://github.com/microsoft/rushstack/tree/main/rigs/heft-web-rig/profiles/library) source folder.
27
27
 
28
28
 
29
29
  ## Links
30
30
 
31
31
  - [CHANGELOG.md](
32
- https://github.com/microsoft/rushstack/blob/master/rigs/heft-web-rig/CHANGELOG.md) - Find
32
+ https://github.com/microsoft/rushstack/blob/main/rigs/heft-web-rig/CHANGELOG.md) - Find
33
33
  out what's new in the latest version
34
34
 
35
35
  `@rushstack/heft-web-rig` is part of the [Rush Stack](https://rushstack.io/) family of projects.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/heft-web-rig",
3
- "version": "0.9.3",
3
+ "version": "0.9.6",
4
4
  "description": "A rig package for web browser projects that build using Heft",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -9,13 +9,13 @@
9
9
  "directory": "rigs/heft-web-rig"
10
10
  },
11
11
  "peerDependencies": {
12
- "@rushstack/heft": "^0.44.5"
12
+ "@rushstack/heft": "^0.44.8"
13
13
  },
14
14
  "dependencies": {
15
- "@microsoft/api-extractor": "7.20.0",
16
- "@rushstack/heft-jest-plugin": "0.2.6",
17
- "@rushstack/heft-sass-plugin": "0.3.10",
18
- "@rushstack/heft-webpack5-plugin": "0.5.3",
15
+ "@microsoft/api-extractor": "7.21.1",
16
+ "@rushstack/heft-jest-plugin": "0.2.9",
17
+ "@rushstack/heft-sass-plugin": "0.3.13",
18
+ "@rushstack/heft-webpack5-plugin": "0.5.6",
19
19
  "autoprefixer": "~10.4.2",
20
20
  "css-loader": "~6.6.0",
21
21
  "css-minimizer-webpack-plugin": "~3.4.1",
@@ -37,11 +37,11 @@
37
37
  "webpack": "~5.68.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@rushstack/heft": "0.44.5"
40
+ "@rushstack/heft": "0.44.8"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "",
44
44
  "_phase:build": ""
45
45
  },
46
- "readme": "## @rushstack/heft-web-rig\n\nA rig package for web projects that build using [Heft](https://www.npmjs.com/package/@rushstack/heft)\nbuild system. To learn more about rig packages, consult the\n[@rushstack/rig-package](https://www.npmjs.com/package/@rushstack/rig-package) documentation.\n\nThis rig provides the following profiles:\n\n- [app](./profiles/app/): For applications that get bundled using Webpack.\n- [library](./profiles/library/): For creating library packages to be consumed by other web projects. ***Also use this profile for a library meant to be used by both Node.js and web apps.***\n\n\nTo enable it, add a **rig.json** file to your project, as shown below:\n\n**config/rig.json**\n```js\n{\n \"$schema\": \"https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json\",\n\n \"rigPackageName\": \"@rushstack/heft-web-rig\",\n \"rigProfile\": \"library\"\n}\n```\n\nThe config files provided by this rig profile can be found in the [heft-web-rig/profiles/library](\nhttps://github.com/microsoft/rushstack/tree/master/rigs/heft-web-rig/profiles/library) source folder.\n\n\n## Links\n\n- [CHANGELOG.md](\n https://github.com/microsoft/rushstack/blob/master/rigs/heft-web-rig/CHANGELOG.md) - Find\n out what's new in the latest version\n\n`@rushstack/heft-web-rig` is part of the [Rush Stack](https://rushstack.io/) family of projects.\n"
46
+ "readme": "## @rushstack/heft-web-rig\n\nA rig package for web projects that build using [Heft](https://www.npmjs.com/package/@rushstack/heft)\nbuild system. To learn more about rig packages, consult the\n[@rushstack/rig-package](https://www.npmjs.com/package/@rushstack/rig-package) documentation.\n\nThis rig provides the following profiles:\n\n- [app](./profiles/app/): For applications that get bundled using Webpack.\n- [library](./profiles/library/): For creating library packages to be consumed by other web projects. ***Also use this profile for a library meant to be used by both Node.js and web apps.***\n\n\nTo enable it, add a **rig.json** file to your project, as shown below:\n\n**config/rig.json**\n```js\n{\n \"$schema\": \"https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json\",\n\n \"rigPackageName\": \"@rushstack/heft-web-rig\",\n \"rigProfile\": \"library\"\n}\n```\n\nThe config files provided by this rig profile can be found in the [heft-web-rig/profiles/library](\nhttps://github.com/microsoft/rushstack/tree/main/rigs/heft-web-rig/profiles/library) source folder.\n\n\n## Links\n\n- [CHANGELOG.md](\n https://github.com/microsoft/rushstack/blob/main/rigs/heft-web-rig/CHANGELOG.md) - Find\n out what's new in the latest version\n\n`@rushstack/heft-web-rig` is part of the [Rush Stack](https://rushstack.io/) family of projects.\n"
47
47
  }