Skip to content

Commit

Permalink
Use dotenvx instead of dotenv (#741)
Browse files Browse the repository at this point in the history
  • Loading branch information
abetomo committed Jul 3, 2024
1 parent 5f0bcb8 commit dd64b94
Show file tree
Hide file tree
Showing 6 changed files with 2,066 additions and 161 deletions.
2 changes: 1 addition & 1 deletion bin/node-lambda
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

'use strict'

require('dotenv').config()
require('@dotenvx/dotenvx').config()
const process = require('process')
const path = require('path')

Expand Down
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const klaw = require('klaw')
const packageJson = require(path.join(__dirname, '..', 'package.json'))
const { minimatch } = require('minimatch')
const archiver = require('archiver')
const dotenv = require('dotenv')
const dotenv = require('@dotenvx/dotenvx')
const ScheduleEvents = require(path.join(__dirname, 'schedule_events'))
const S3Events = require(path.join(__dirname, 's3_events'))
const S3Deploy = require(path.join(__dirname, 's3_deploy'))
Expand Down
Loading

0 comments on commit dd64b94

Please sign in to comment.