@driveflux/env 5.0.9-feature-microlino.0 → 5.0.10-develop.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +13 -0
- package/bin/init-env-bin.js.map +110 -0
- package/bin/init-env.js +32 -0
- package/build.ts +18 -0
- package/dist/init-env-bin.d.ts +2 -0
- package/dist/init-env.js +2 -2
- package/dist/init-env.js.map +2 -2
- package/package.json +2 -2
- package/src/init-env-bin.ts +4 -0
- package/tsconfig.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,8 +6,8 @@ $ bun run ./build.ts
|
|
|
6
6
|
Files processed: 4
|
|
7
7
|
Total exports found: 9
|
|
8
8
|
Duplicates removed: 0
|
|
9
|
-
Total processing time:
|
|
10
|
-
Average time per file:
|
|
9
|
+
Total processing time: 42.68ms
|
|
10
|
+
Average time per file: 10.67ms
|
|
11
11
|
|
|
12
12
|
✅ No duplicate exports found in any files
|
|
13
13
|
✅ Build successful
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @driveflux/env
|
|
2
2
|
|
|
3
|
+
## 5.0.10-develop.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3bf6393: Minor updates
|
|
8
|
+
|
|
9
|
+
## 5.0.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- c52ae80: Handle when USE_ENV and NODE_ENV are the same
|
|
14
|
+
- fff20b6: Bump version
|
|
15
|
+
|
|
3
16
|
## 5.0.9-feature-microlino.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|