secure-env-ts
Advanced tools
Comparing version 1.2.8 to 1.2.9
@@ -57,3 +57,3 @@ #! /usr/bin/env node | ||
const path = `./${file}`; | ||
const clean = () => fs_1.default.unlinkSync(path); | ||
const clean = () => fs_1.default.existsSync(path) && fs_1.default.unlinkSync(path); | ||
process.on('exit', clean); | ||
@@ -60,0 +60,0 @@ process.on('SIGINT', clean); |
{ | ||
"name": "secure-env-ts", | ||
"version": "1.2.8", | ||
"version": "1.2.9", | ||
"description": "Use ENVs securely with encryption", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
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
30639