Skip to content

Commit ec7e3c2

Browse files
committed
fix dotenv
1 parent 3d8ac7d commit ec7e3c2

3 files changed

Lines changed: 6 additions & 10 deletions

File tree

dist/dotenv/dotenv.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@live-codes/browser-compilers",
3-
"version": "0.22.7",
3+
"version": "0.22.9",
44
"description": "Compilers that run in the browser, for use in livecodes.io",
55
"author": "Hatem Hosny",
66
"license": "MIT",

vendor_modules/imports/dotenv.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
import { parse } from 'dotenv';
2-
import { expand } from 'dotenv-expand';
3-
4-
export { parse, expand };
5-
export const parseAndExpand = (/** @type {string} */ env) =>
6-
expand({ parsed: parse(env || '') }).parsed;
1+
export { config, parse, populate } from 'dotenv';
2+
export { expand } from 'dotenv-expand';

0 commit comments

Comments
 (0)