Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "parsenv", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Edit, Save or Load variables from .env ( For Nodejs )", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -57,11 +57,11 @@ # ParsEnv | ||
const config = { | ||
path: require('path').resolve(process.cwd(), ".env") # default | ||
encoding: 'utf8' # default | ||
debug: false # default | ||
path: require('path').resolve(process.cwd(), ".env") // default | ||
encoding: 'utf8' // default | ||
debug: false // default | ||
}; | ||
# config can apply to dotenv.config function | ||
// config can apply to dotenv.config function | ||
dotenv.config(config); | ||
# also pass it to dotenv.write function | ||
// also pass it to dotenv.write function | ||
dotenv.write(config); | ||
@@ -68,0 +68,0 @@ ``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6134