Skip to content

Commit dd64b94

Browse files
authored
Use dotenvx instead of dotenv (#741)
1 parent 5f0bcb8 commit dd64b94

File tree

6 files changed

+2066
-161
lines changed

6 files changed

+2066
-161
lines changed

bin/node-lambda

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
'use strict'
44

5-
require('dotenv').config()
5+
require('@dotenvx/dotenvx').config()
66
const process = require('process')
77
const path = require('path')
88

lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const klaw = require('klaw')
1010
const packageJson = require(path.join(__dirname, '..', 'package.json'))
1111
const { minimatch } = require('minimatch')
1212
const archiver = require('archiver')
13-
const dotenv = require('dotenv')
13+
const dotenv = require('@dotenvx/dotenvx')
1414
const ScheduleEvents = require(path.join(__dirname, 'schedule_events'))
1515
const S3Events = require(path.join(__dirname, 's3_events'))
1616
const S3Deploy = require(path.join(__dirname, 's3_deploy'))

0 commit comments

Comments
 (0)