@giovannijecha/jecode 0.1.5-rc.2 → 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/bin/jecode.js +0 -0
- package/package.json +2 -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
|
|
package/bin/jecode.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@giovannijecha/jecode",
|
|
3
|
-
"version": "0.1.5
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "An owned coding agent with zero external runtime dependencies.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"typecheck": "tsc --noEmit",
|
|
45
45
|
"test": "npm run build:release && node --test",
|
|
46
46
|
"coverage": "npm run build:release && node --test --experimental-test-coverage --test-coverage-include=\"src/**/*.ts\" --test-coverage-lines=80 --test-coverage-branches=75 --test-coverage-functions=75",
|
|
47
|
+
"check:release-tag": "node dev/check-release-tag.ts",
|
|
47
48
|
"check:package": "node dev/check-package.ts",
|
|
48
49
|
"check:install": "node dev/check-installed-cli.ts",
|
|
49
50
|
"check": "npm run typecheck && npm run coverage && npm run check:package && npm run check:install"
|