@giovannijecha/jecode 0.1.5-rc.3 → 0.1.5
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 +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,14 +43,16 @@
|
|
|
43
43
|
|
|
44
44
|
## Install
|
|
45
45
|
|
|
46
|
-
Jecode requires **Node.js 24 or newer** and npm
|
|
47
|
-
published on the **next** channel:
|
|
46
|
+
Jecode requires **Node.js 24 or newer** and npm:
|
|
48
47
|
|
|
49
48
|
~~~console
|
|
50
|
-
npm install --global @giovannijecha/jecode
|
|
49
|
+
npm install --global @giovannijecha/jecode
|
|
51
50
|
jecode --version
|
|
52
51
|
~~~
|
|
53
52
|
|
|
53
|
+
To try prereleases instead, install the opt-in **next** channel with
|
|
54
|
+
`npm install --global @giovannijecha/jecode@next`.
|
|
55
|
+
|
|
54
56
|
Then open the project you want to work on and run Jecode:
|
|
55
57
|
|
|
56
58
|
~~~console
|
|
@@ -69,10 +71,10 @@ Ubuntu, and macOS.
|
|
|
69
71
|
|
|
70
72
|
### Update
|
|
71
73
|
|
|
72
|
-
Install the current release
|
|
74
|
+
Install the current stable release over the existing global command:
|
|
73
75
|
|
|
74
76
|
~~~console
|
|
75
|
-
npm install --global @giovannijecha/jecode
|
|
77
|
+
npm install --global @giovannijecha/jecode
|
|
76
78
|
jecode --version
|
|
77
79
|
~~~
|
|
78
80
|
|