even-pf 0.4.0 → 0.4.1
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 +12 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -28,11 +28,23 @@ Make sure you have a config file in your home or current directory. Alternativel
|
|
|
28
28
|
|
|
29
29
|
This project was created using `bun init` in bun v1.3.2. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
|
|
30
30
|
|
|
31
|
+
### Publishing
|
|
31
32
|
After making changes, you might want to bump the version.
|
|
32
33
|
```bash
|
|
33
34
|
bun run bump <semver>
|
|
34
35
|
```
|
|
35
36
|
|
|
37
|
+
Build the executable:
|
|
38
|
+
```bash
|
|
39
|
+
bun run build:all
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Then publish to npm:
|
|
43
|
+
```bash
|
|
44
|
+
bun run publish:all
|
|
45
|
+
```
|
|
46
|
+
Do not run `bun publish` directly, the executables are distributed as separate packages and need to be published separately.
|
|
47
|
+
|
|
36
48
|
## Specs
|
|
37
49
|
### File-viewer Frontend
|
|
38
50
|
In consideration of the tool might be running at a remote server, for easily viewing the Markdown files, we will use a simple file-viewer frontend.
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "even-pf",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "AI-assisted responsible grading tool for programming assignments",
|
|
5
5
|
"module": "src/cli.ts",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "UNLICENSED",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"start": "bun run src/cli.ts",
|
|
10
|
-
"build
|
|
10
|
+
"build:dev": "bun build src/cli.ts --compile --outfile build/epf",
|
|
11
11
|
"build:all": "bun scripts/build-all.ts",
|
|
12
12
|
"publish:all": "bun scripts/publish-all.ts",
|
|
13
13
|
"publish:dry": "bun scripts/publish-all.ts --dry-run",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"zod-defaults": "^0.2.3"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"even-pf-linux-x64": "0.4.
|
|
35
|
-
"even-pf-linux-arm64": "0.4.
|
|
36
|
-
"even-pf-windows-x64": "0.4.
|
|
37
|
-
"even-pf-darwin-x64": "0.4.
|
|
38
|
-
"even-pf-darwin-arm64": "0.4.
|
|
34
|
+
"even-pf-linux-x64": "0.4.1",
|
|
35
|
+
"even-pf-linux-arm64": "0.4.1",
|
|
36
|
+
"even-pf-windows-x64": "0.4.1",
|
|
37
|
+
"even-pf-darwin-x64": "0.4.1",
|
|
38
|
+
"even-pf-darwin-arm64": "0.4.1"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
41
|
"bin/even-pf.js",
|