@giovannijecha/jecode 0.1.8-rc.0 → 0.1.8
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/README.md +28 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,6 +87,18 @@ npm install --global @giovannijecha/jecode
|
|
|
87
87
|
jecode --version
|
|
88
88
|
~~~
|
|
89
89
|
|
|
90
|
+
If you installed Jecode from GitHub before the scoped npm package existed,
|
|
91
|
+
remove the old unscoped package once before updating:
|
|
92
|
+
|
|
93
|
+
~~~console
|
|
94
|
+
npm uninstall --global jecode
|
|
95
|
+
npm install --global @giovannijecha/jecode
|
|
96
|
+
~~~
|
|
97
|
+
|
|
98
|
+
An `EEXIST` error for a `bin/jecode` path usually means that this legacy
|
|
99
|
+
executable still owns the command. Remove it instead of installing with
|
|
100
|
+
`--force`.
|
|
101
|
+
|
|
90
102
|
### Uninstall
|
|
91
103
|
|
|
92
104
|
~~~console
|
|
@@ -100,10 +112,22 @@ when you intentionally want to erase Jecode's local data.
|
|
|
100
112
|
### Linux and WSL
|
|
101
113
|
|
|
102
114
|
WSL has its own Node.js installation and `PATH`; the Node.js version installed
|
|
103
|
-
on Windows does not apply inside it.
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
115
|
+
on Windows does not apply inside it. Keep user-installed npm commands in the
|
|
116
|
+
Linux user path and put that path before inherited Windows entries:
|
|
117
|
+
|
|
118
|
+
~~~console
|
|
119
|
+
npm config set prefix "$HOME/.local"
|
|
120
|
+
export PATH="$HOME/.local/bin:$PATH"
|
|
121
|
+
npm install --global @giovannijecha/jecode
|
|
122
|
+
hash -r
|
|
123
|
+
command -v jecode
|
|
124
|
+
jecode --version
|
|
125
|
+
~~~
|
|
126
|
+
|
|
127
|
+
Persist the `PATH` export in `~/.profile` or your shell's startup file. Inside
|
|
128
|
+
WSL, **command -v jecode** should resolve below `/home/...`, not below
|
|
129
|
+
`/mnt/c/.../Volta`. Do not ignore an `EBADENGINE` warning: **node --version**
|
|
130
|
+
must report 22.18+ on the 22.x line, or 24+.
|
|
107
131
|
|
|
108
132
|
### Build from source
|
|
109
133
|
|