@wondev/dotenv-example 1.0.0 → 1.0.2
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.
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wondev/dotenv-example",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Generate .env.example from .env files with masked values",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"
|
|
7
|
+
"dotenvexample": "./bin/index.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
seungwonan
|
|
2
|
+
|
|
3
|
+
npm config ls
|
|
4
|
+
; "builtin" config from /opt/homebrew/lib/node_modules/npm/npmrc
|
|
5
|
+
|
|
6
|
+
prefix = "/opt/homebrew"
|
|
7
|
+
|
|
8
|
+
; "user" config from /Users/seungwonan/.npmrc
|
|
9
|
+
|
|
10
|
+
//registry.npmjs.org/:_authToken = (protected)
|
|
11
|
+
|
|
12
|
+
; node bin location = /Users/seungwonan/.local/share/fnm/node-versions/v23.11.1/installation/bin/node
|
|
13
|
+
; node version = v23.11.1
|
|
14
|
+
; npm local prefix = /Users/seungwonan/Dev/2-area/vibe-tools/dotexample
|
|
15
|
+
; npm version = 11.6.0
|
|
16
|
+
; cwd = /Users/seungwonan/Dev/2-area/vibe-tools/dotexample
|
|
17
|
+
; HOME = /Users/seungwonan
|
|
18
|
+
; Run `npm config ls -l` to show all defaults.
|
|
19
|
+
|
|
20
|
+
npm 패키지에 생성된지 1일 뒤에 사용 가능하게 세팅해서 그런 거 같았는데 그것도 아니네?
|