-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): [email protected] [skip ci]
## unplugin-environment [1.1.2](https://github.com/r17x/js/compare/[email protected]@1.1.2) (2024-09-28) ### Bug Fixes * **unplugin-environment:** virtual module in @farmfe/core ([18b9088](18b9088)) ### Tests * **unplugin-environment:** create test for build ([f64e105](f64e105))
- Loading branch information
1 parent
18b9088
commit 468ed87
Showing
2 changed files
with
19 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
## unplugin-environment [1.1.2](https://github.com/r17x/js/compare/[email protected]@1.1.2) (2024-09-28) | ||
|
||
### Bug Fixes | ||
|
||
* **unplugin-environment:** virtual module in @farmfe/core ([18b9088](https://github.com/r17x/js/commit/18b9088d87b2b3f0876178917a58b28f2578ca2f)) | ||
|
||
### Tests | ||
|
||
* **unplugin-environment:** create test for build ([f64e105](https://github.com/r17x/js/commit/f64e105335f08e433c1e14c3fdd939763d1a9c43)) | ||
|
||
## unplugin-environment [1.1.1](https://github.com/r17x/js/compare/[email protected]@1.1.1) (2024-09-27) | ||
|
||
### Bug Fixes | ||
|
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,7 +1,7 @@ | ||
{ | ||
"name": "unplugin-environment", | ||
"type": "module", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "A plugin for loading enviroment variables safely with schema validation, simple with virtual module, type-safe with intellisense, and better DX 🔥 🚀 👷. Support with Next.js, Vite, Webpack, Rollup, Rspack, Farm, and more.", | ||
"license": "MIT", | ||
"author": "r17x <[email protected]>", | ||
|
@@ -80,10 +80,16 @@ | |
"types": "dist/index.d.ts", | ||
"typesVersions": { | ||
"*": { | ||
"*": ["./dist/*", "./*"] | ||
"*": [ | ||
"./dist/*", | ||
"./*" | ||
] | ||
} | ||
}, | ||
"files": ["dist", "client.d.ts"], | ||
"files": [ | ||
"dist", | ||
"client.d.ts" | ||
], | ||
"scripts": { | ||
"prepack": "npm run build", | ||
"build": "tsup", | ||
|