Skip to content

Commit 27d3e14

Browse files
authored
docs: update standalone packages docs — replace alpha prerelease with zero-based semver (#1064)
1 parent 655db76 commit 27d3e14

5 files changed

Lines changed: 8 additions & 12 deletions

File tree

packages/docsite/stories/Icons/IconsBuildTransforms.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The examples below use `svg` as the target path. Replace it with the appropriate
4141
Add [@fluentui/react-icons-atomic-webpack-loader](https://www.npmjs.com/package/@fluentui/react-icons-atomic-webpack-loader) to your project:
4242

4343
```bash
44-
npm install --save-dev @fluentui/react-icons-atomic-webpack-loader@alpha
44+
npm install --save-dev @fluentui/react-icons-atomic-webpack-loader
4545
```
4646

4747
Then add it to your webpack config:

packages/react-icons-atomic-webpack-loader/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# @fluentui/react-icons-atomic-webpack-loader
22

3-
> **⚠️ Alpha** — this package is available as an alpha prerelease only.
4-
> ⚠️ The API may change before the first stable release.
5-
6-
> Install via `npm install @fluentui/react-icons-atomic-webpack-loader@alpha --save-dev`
3+
> **⚠️ 0.x** — this package is in early development and follows [zero-based major semver](https://0ver.org/).
4+
> Breaking changes may occur in minor releases until 1.0.
75
86
Webpack loader that transforms barrel imports and re-exports from `@fluentui/react-icons` into atomic deep paths for better tree-shaking and smaller bundles.
97

packages/react-icons-svg-sprite-subsetting-webpack-plugin/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# @fluentui/react-icons-svg-sprite-subsetting-webpack-plugin
22

3-
> **⚠️ Alpha** — this package is available as an alpha prerelease only.
4-
>
5-
> Install via `npm i @fluentui/react-icons-svg-sprite-subsetting-webpack-plugin@alpha`
3+
> **⚠️ 0.x** — this package is in early development and follows [zero-based major semver](https://0ver.org/).
4+
> Breaking changes may occur in minor releases until 1.0.
65
76
Webpack plugin that optimizes the `@fluentui/react-icons/svg-sprite/*` entrypoints.
87

packages/react-icons/docs/build-transforms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Replace every `svg` segment in the target paths below with your chosen target (`
146146
Install [`@fluentui/react-icons-atomic-webpack-loader`](../../react-icons-atomic-webpack-loader/README.md):
147147

148148
```bash
149-
npm install @fluentui/react-icons-atomic-webpack-loader@alpha --save-dev
149+
npm install @fluentui/react-icons-atomic-webpack-loader --save-dev
150150
```
151151

152152
Add the loader as an `enforce: 'pre'` rule so it runs before other loaders:

packages/react-icons/docs/preview-features/svg-sprites.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,8 @@ export default defineConfig({
126126

127127
### Webpack Plugin
128128

129-
> **⚠️ Alpha** — this package is available as an alpha prerelease only.
130-
>
131-
> Install via `npm i @fluentui/react-icons-svg-sprite-subsetting-webpack-plugin@prerelease`
129+
> **⚠️ 0.x** — this package is in early development and follows [zero-based major semver](https://0ver.org/).
130+
> Breaking changes may occur in minor releases until 1.0.
132131
133132
To leverage performance benefits to the fullest, use the Webpack SvgSprite Subsetting Plugin. It analyzes your application's actual icon usage at build time and strips unused icon definitions from the sprite files — ensuring only icons your app references are shipped.
134133

0 commit comments

Comments
 (0)