oh-my-customcode 0.62.4 → 0.62.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/dist/cli/index.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +2 -2
- package/templates/manifest.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -9325,7 +9325,7 @@ var init_package = __esm(() => {
|
|
|
9325
9325
|
workspaces: [
|
|
9326
9326
|
"packages/*"
|
|
9327
9327
|
],
|
|
9328
|
-
version: "0.62.
|
|
9328
|
+
version: "0.62.5",
|
|
9329
9329
|
description: "Batteries-included agent harness for Claude Code",
|
|
9330
9330
|
type: "module",
|
|
9331
9331
|
bin: {
|
|
@@ -9350,7 +9350,7 @@ var init_package = __esm(() => {
|
|
|
9350
9350
|
scripts: {
|
|
9351
9351
|
dev: "bun run src/cli/index.ts",
|
|
9352
9352
|
build: "bun build src/cli/index.ts --outdir dist/cli --target node && bun build src/index.ts --outdir dist --target node && bun run scripts/sync-source-lockfile.ts",
|
|
9353
|
-
test: "bun test",
|
|
9353
|
+
test: "bun test tests/ packages/eval-core/",
|
|
9354
9354
|
"test:unit": "bun test tests/unit",
|
|
9355
9355
|
"test:integration": "bun test tests/integration",
|
|
9356
9356
|
"test:e2e": "bun test tests/e2e",
|
package/dist/index.js
CHANGED
|
@@ -1674,7 +1674,7 @@ var package_default = {
|
|
|
1674
1674
|
workspaces: [
|
|
1675
1675
|
"packages/*"
|
|
1676
1676
|
],
|
|
1677
|
-
version: "0.62.
|
|
1677
|
+
version: "0.62.5",
|
|
1678
1678
|
description: "Batteries-included agent harness for Claude Code",
|
|
1679
1679
|
type: "module",
|
|
1680
1680
|
bin: {
|
|
@@ -1699,7 +1699,7 @@ var package_default = {
|
|
|
1699
1699
|
scripts: {
|
|
1700
1700
|
dev: "bun run src/cli/index.ts",
|
|
1701
1701
|
build: "bun build src/cli/index.ts --outdir dist/cli --target node && bun build src/index.ts --outdir dist --target node && bun run scripts/sync-source-lockfile.ts",
|
|
1702
|
-
test: "bun test",
|
|
1702
|
+
test: "bun test tests/ packages/eval-core/",
|
|
1703
1703
|
"test:unit": "bun test tests/unit",
|
|
1704
1704
|
"test:integration": "bun test tests/integration",
|
|
1705
1705
|
"test:e2e": "bun test tests/e2e",
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"workspaces": [
|
|
4
4
|
"packages/*"
|
|
5
5
|
],
|
|
6
|
-
"version": "0.62.
|
|
6
|
+
"version": "0.62.5",
|
|
7
7
|
"description": "Batteries-included agent harness for Claude Code",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "bun run src/cli/index.ts",
|
|
30
30
|
"build": "bun build src/cli/index.ts --outdir dist/cli --target node && bun build src/index.ts --outdir dist --target node && bun run scripts/sync-source-lockfile.ts",
|
|
31
|
-
"test": "bun test",
|
|
31
|
+
"test": "bun test tests/ packages/eval-core/",
|
|
32
32
|
"test:unit": "bun test tests/unit",
|
|
33
33
|
"test:integration": "bun test tests/integration",
|
|
34
34
|
"test:e2e": "bun test tests/e2e",
|
package/templates/manifest.json
CHANGED