even-pf 0.3.2 → 0.3.3

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 CHANGED
@@ -5,7 +5,7 @@ AI-assisted responsible grading tool for programming assignments. A GPT-wrapper
5
5
  Make sure you have [Bun](https://bun.com) installed.
6
6
  To run:
7
7
  ```bash
8
- bunx even-pf [config]
8
+ bunx --bun even-pf [config]
9
9
  ```
10
10
 
11
11
  ## Development
package/bin/even-pf.js CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  "use strict";
3
3
 
4
- const { spawnSync } = require("child_process");
5
- const { chmodSync, statSync } = require("fs");
4
+ import {spawnSync} from "child_process";
5
+ import {chmodSync, statSync} from "fs";
6
6
 
7
7
  // Map process.platform + process.arch to the sub-package name and binary filename
8
8
  const PLATFORM_MAP = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "even-pf",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "AI-assisted responsible grading tool for programming assignments",
5
5
  "module": "src/cli.ts",
6
6
  "type": "module",
@@ -30,11 +30,11 @@
30
30
  "zod-defaults": "^0.2.3"
31
31
  },
32
32
  "optionalDependencies": {
33
- "even-pf-linux-x64": "0.3.2",
34
- "even-pf-linux-arm64": "0.3.2",
35
- "even-pf-windows-x64": "0.3.2",
36
- "even-pf-darwin-x64": "0.3.2",
37
- "even-pf-darwin-arm64": "0.3.2"
33
+ "even-pf-linux-x64": "0.3.3",
34
+ "even-pf-linux-arm64": "0.3.3",
35
+ "even-pf-windows-x64": "0.3.3",
36
+ "even-pf-darwin-x64": "0.3.3",
37
+ "even-pf-darwin-arm64": "0.3.3"
38
38
  },
39
39
  "files": [
40
40
  "bin/even-pf.js",