-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(angular): add unsecure mode option (#69)
* feat(angular): add unsecure mode option * release: @dotenv-run 1.3.2, @ngx-env/builder v17.0.7
- Loading branch information
Showing
23 changed files
with
97 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ngx-env/builder", | ||
"version": "17.0.6", | ||
"version": "17.0.7", | ||
"description": "Easily inject environment variables into your Angular applications", | ||
"author": "chihab <[email protected]>", | ||
"homepage": "https://github.com/chihab/ngx-env/tree/main/packages/angular", | ||
|
@@ -29,8 +29,8 @@ | |
"copy-dist": "ts-node tools/schema-dist.ts" | ||
}, | ||
"dependencies": { | ||
"@dotenv-run/esbuild": "^1.3.0", | ||
"@dotenv-run/webpack": "^1.3.0", | ||
"@dotenv-run/esbuild": "^1.3.2", | ||
"@dotenv-run/webpack": "^1.3.2", | ||
"glob": "^10.3.10" | ||
}, | ||
"devDependencies": { | ||
|
@@ -40,7 +40,7 @@ | |
"@angular-devkit/architect": "^0.1700.8", | ||
"@angular-devkit/core": "^17.0.0", | ||
"@angular/compiler": "^17.0.2", | ||
"@dotenv-run/core": "^1.3.0", | ||
"@dotenv-run/core": "^1.3.2", | ||
"cpy": "^8.1.2", | ||
"karma": "^6.4.2", | ||
"ts-node": "^10.8.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# @dotenv-run/cli | ||
|
||
## 1.3.3 | ||
|
||
### Patch Changes | ||
|
||
- feat(angular): add unsecure mode option | ||
- Updated dependencies | ||
- @dotenv-run/[email protected] | ||
|
||
## 1.3.2 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dotenv-run/cli", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"description": "cli to load environment variables with monorepo support", | ||
"homepage": "https://github.com/chihab/dotenv-run", | ||
"type": "module", | ||
|
@@ -25,7 +25,7 @@ | |
"author": "Chihab Otmani <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@dotenv-run/core": "^1.3.1", | ||
"@dotenv-run/core": "^1.3.2", | ||
"chalk": "^4.1.0", | ||
"cross-spawn": "^7.0.3", | ||
"minimist": "^1.2.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# @dotenv-run/esbuild | ||
|
||
## 1.3.2 | ||
|
||
### Patch Changes | ||
|
||
- feat(angular): add unsecure mode option | ||
- Updated dependencies | ||
- @dotenv-run/[email protected] | ||
|
||
## 1.3.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dotenv-run/esbuild", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "Run your scripts with dotenv variables", | ||
"homepage": "https://github.com/chihab/dotenv-run", | ||
"main": "dist/cjs/index.js", | ||
|
@@ -26,7 +26,7 @@ | |
"author": "Chihab Otmani <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@dotenv-run/core": "^1.3.1" | ||
"@dotenv-run/core": "^1.3.2" | ||
}, | ||
"peerDependencies": { | ||
"esbuild": "0.19.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# @dotenv-run/load | ||
|
||
## 1.3.2 | ||
|
||
### Patch Changes | ||
|
||
- feat(angular): add unsecure mode option | ||
- Updated dependencies | ||
- @dotenv-run/[email protected] | ||
|
||
## 1.3.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dotenv-run/load", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "Perload your scripts with dotenv variables", | ||
"homepage": "https://github.com/chihab/dotenv-run", | ||
"main": "dist/index.js", | ||
|
@@ -22,7 +22,7 @@ | |
"author": "Chihab Otmani <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@dotenv-run/core": "^1.3.1" | ||
"@dotenv-run/core": "^1.3.2" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^16.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# @dotenv-run/rollup | ||
|
||
## 1.3.2 | ||
|
||
### Patch Changes | ||
|
||
- feat(angular): add unsecure mode option | ||
- Updated dependencies | ||
- @dotenv-run/[email protected] | ||
|
||
## 1.3.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dotenv-run/rollup", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "Run your scripts with dotenv variables", | ||
"homepage": "https://github.com/chihab/dotenv-run", | ||
"main": "dist/index.js", | ||
|
@@ -22,7 +22,7 @@ | |
"author": "Chihab Otmani <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@dotenv-run/core": "^1.3.1", | ||
"@dotenv-run/core": "^1.3.2", | ||
"@rollup/plugin-replace": "^5.0.2" | ||
}, | ||
"peerDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# @dotenv-run/webpack | ||
|
||
## 1.3.2 | ||
|
||
### Patch Changes | ||
|
||
- feat(angular): add unsecure mode option | ||
- Updated dependencies | ||
- @dotenv-run/[email protected] | ||
|
||
## 1.3.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dotenv-run/webpack", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "Run your scripts with dotenv variables", | ||
"homepage": "https://github.com/chihab/dotenv-run", | ||
"main": "dist/cjs/index.js", | ||
|
@@ -25,7 +25,7 @@ | |
"author": "Chihab Otmani <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@dotenv-run/core": "^1.3.1" | ||
"@dotenv-run/core": "^1.3.2" | ||
}, | ||
"peerDependencies": { | ||
"webpack": "^5.0.0" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.