Skip to content

Commit 308ea34

Browse files
committed
release: @dotenv-run 1.3.0, @ngx-env/builder v17.0.4
1 parent a4688f1 commit 308ea34

File tree

18 files changed

+102
-34
lines changed

18 files changed

+102
-34
lines changed

docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @dotenv-run/docs
2+
3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- refactor and docs initialization

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@dotenv-run/docs",
33
"private": true,
44
"type": "module",
5-
"version": "0.0.1",
5+
"version": "0.1.0",
66
"scripts": {
77
"dev": "astro dev",
88
"start": "astro dev",

examples/apps/ng-app-webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@angular/compiler-cli": "^16.0.0",
3030
"@types/node": "^16.0.0",
3131
"cross-env": "^7.0.3",
32-
"@dotenv-run/webpack": "^1.2.3",
32+
"@dotenv-run/webpack": "^1.3.0",
3333
"typescript": "~4.9.3"
3434
}
3535
}

examples/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"e2e:all": "nx run-many --target=e2e --all --parallel"
99
},
1010
"devDependencies": {
11-
"@dotenv-run/cli": "^1.2.3",
12-
"@dotenv-run/load": "^1.2.3",
13-
"@dotenv-run/webpack": "^1.2.3",
14-
"@dotenv-run/rollup": "^1.2.3",
11+
"@dotenv-run/cli": "^1.3.0",
12+
"@dotenv-run/load": "^1.3.0",
13+
"@dotenv-run/webpack": "^1.3.0",
14+
"@dotenv-run/rollup": "^1.3.0",
1515
"webpack": "^5.0.0",
1616
"serve": "^14.2.1",
1717
"@playwright/test": "^1.37.1",

packages/angular/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-env/builder",
3-
"version": "17.0.3",
3+
"version": "17.0.4",
44
"description": "Easily inject environment variables into your Angular applications",
55
"author": "chihab <chihab@gmail.com>",
66
"homepage": "https://github.com/chihab/dotenv-run/tree/main/packages/angular",
@@ -29,8 +29,8 @@
2929
"copy-dist": "ts-node tools/schema-dist.ts"
3030
},
3131
"dependencies": {
32-
"@dotenv-run/esbuild": "1.2.3",
33-
"@dotenv-run/webpack": "1.2.3",
32+
"@dotenv-run/esbuild": "1.3.0",
33+
"@dotenv-run/webpack": "1.3.0",
3434
"glob": "^10.3.10"
3535
},
3636
"devDependencies": {
@@ -40,7 +40,7 @@
4040
"@angular-devkit/architect": "^0.1700.8",
4141
"@angular-devkit/core": "^17.0.0",
4242
"@angular/compiler": "^17.0.2",
43-
"@dotenv-run/core": "^1.2.3",
43+
"@dotenv-run/core": "^1.3.0",
4444
"cpy": "^8.1.2",
4545
"karma": "^6.4.2",
4646
"ts-node": "^10.8.0",

packages/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @dotenv-run/cli
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- refactor and docs initialization
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @dotenv-run/core@1.3.0
13+
314
## 1.2.3
415

516
### Patch Changes

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dotenv-run/cli",
3-
"version": "1.2.3",
3+
"version": "1.3.0",
44
"description": "cli to load environment variables with monorepo support",
55
"homepage": "https://github.com/chihab/dotenv-run",
66
"type": "module",
@@ -25,7 +25,7 @@
2525
"author": "Chihab Otmani <chihab@gmail.com>",
2626
"license": "ISC",
2727
"dependencies": {
28-
"@dotenv-run/core": "^1.2.3",
28+
"@dotenv-run/core": "^1.3.0",
2929
"chalk": "^4.1.0",
3030
"cross-spawn": "^7.0.3",
3131
"minimist": "^1.2.8"

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @dotenv-run/core
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- refactor and docs initialization
8+
39
## 1.2.3
410

511
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dotenv-run/core",
3-
"version": "1.2.3",
3+
"version": "1.3.0",
44
"description": "core library to load environment variables with monorepo support",
55
"homepage": "https://github.com/chihab/dotenv-run",
66
"main": "dist/cjs/index.js",

packages/esbuild/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @dotenv-run/esbuild
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- refactor and docs initialization
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @dotenv-run/core@1.3.0
13+
314
## 1.2.3
415

516
### Patch Changes

0 commit comments

Comments
 (0)