@sequencemedia/crypto 1.1.5 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -70,14 +70,16 @@ encrypt "./file.txt" > "./encrypted.txt"
70
70
  Requires `CRYPTO_KEY` as a _variable_ in the Bash environment and a file path to _decrypt_
71
71
 
72
72
  ```bash
73
+ CRYPTO_KEY='secret'
73
74
  file_data=$(decrypt "./encrypted.txt")
74
75
  ```
75
76
 
76
77
  ```bash
78
+ CRYPTO_KEY='secret'
77
79
  decrypt "./encrypted.txt" > "./file.txt"
78
80
  ```
79
81
 
80
- ## Bash utilities
82
+ ## Bash scripts
81
83
 
82
84
  ### `encrypt.sh`
83
85
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sequencemedia/crypto",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "main": "./lib/index.cjs",
5
5
  "type": "module",
6
6
  "types": "./crypto.d.ts",