Skip to content

Commit d1bdbb6

Browse files
committed
doc: update angular demo links to v20
1 parent 67215f3 commit d1bdbb6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Here are some of the benefits of using `dotenv-run`:
3434
- [@dotenv-run/esbuild](#dotenv-runesbuild)
3535
- [@ngx-env/builder](#ngx-envbuilder)
3636
- [Testimonials](#testimonials)
37-
- [Demos](#demos)
38-
- [Quick start](#quick-start-1)
37+
- [Demos](#demos)
38+
- [Quick start](#quick-start-1)
3939
- [@dotenv-run/webpack](#dotenv-runwebpack)
4040
- [@dotenv-run/rollup](#dotenv-runrollup)
4141
- [@dotenv-run/vite](#dotenv-runvite)
@@ -184,7 +184,7 @@ NB: Angular not Angular.js :P
184184

185185
#### Demos
186186

187-
- [v19 with vite/esbuild builder](https://stackblitz.com/edit/ngx-env-3ey8js?file=src%2Fapp.component.ts)
187+
- [v20 with vite/esbuild builder](https://stackblitz.com/edit/ngx-env-3ey8js?file=src%2Fapp.component.ts)
188188
- [v16 with webpack builder](https://stackblitz.com/edit/ngx-env?file=src%2Fapp.component.ts)
189189

190190
#### Quick start
@@ -288,8 +288,8 @@ export default {
288288
import env from "@dotenv-run/vite";
289289

290290
export default {
291-
envPrefix: 'MY_PREFIX_',
292-
envDir: './my-env-directory',
291+
envPrefix: "MY_PREFIX_",
292+
envDir: "./my-env-directory",
293293
plugins: [env()],
294294
};
295295
```
@@ -299,13 +299,13 @@ export default {
299299
[`@dotenv-run/rspack`](https://www.npmjs.com/package/@dotenv-run/rspack) is a plugin for Rspack that can be used to inject environment variables into your applications.
300300

301301
```js
302-
import {DotenvRunPlugin} from '@dotenv-run/rspack'
302+
import { DotenvRunPlugin } from "@dotenv-run/rspack";
303303

304304
export default {
305305
plugins: [
306306
new DotenvRunPlugin({
307-
root: __dirname
308-
})
307+
root: __dirname,
308+
}),
309309
],
310310
};
311311
```

packages/angular/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ NB: Angular not Angular.js :)
3434

3535
## Quick Demo
3636

37-
- [v19 with vite/esbuild builder](https://stackblitz.com/edit/ngx-env-3ey8js?file=src%2Fapp.component.ts)
37+
- [v20 with vite/esbuild builder](https://stackblitz.com/edit/ngx-env-3ey8js?file=src%2Fapp.component.ts)
3838
- [v16 with webpack builder](https://stackblitz.com/edit/ngx-env?file=src%2Fapp.component.ts)
3939

4040
<h2> Table of contents</h2>

0 commit comments

Comments
 (0)