We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84e6b6e commit 3f5d17bCopy full SHA for 3f5d17b
1 file changed
packages/cli/src/index.ts
@@ -1,7 +1,9 @@
1
-import 'dotenv/config'; // load .env into process.env (overrides globals)
+import * as dotenv from 'dotenv';
2
import { Command } from 'commander';
3
import { greet } from '@acme/core';
4
5
+dotenv.config({ override: true });
6
+
7
const VERSION = '0.1.0';
8
9
const program = new Command();
0 commit comments