@epoch-ai/cli 2.2.8 → 2.2.10
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/package.json +13 -13
- package/script/publish.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.10",
|
|
4
4
|
"name": "@epoch-ai/cli",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -167,18 +167,18 @@
|
|
|
167
167
|
"ajv": "8.20.0"
|
|
168
168
|
},
|
|
169
169
|
"optionalDependencies": {
|
|
170
|
-
"@epoch-ai/cli-darwin-arm64": "2.2.
|
|
171
|
-
"@epoch-ai/cli-darwin-x64": "2.2.
|
|
172
|
-
"@epoch-ai/cli-darwin-x64-baseline": "2.2.
|
|
173
|
-
"@epoch-ai/cli-linux-arm64": "2.2.
|
|
174
|
-
"@epoch-ai/cli-linux-x64": "2.2.
|
|
175
|
-
"@epoch-ai/cli-linux-x64-baseline": "2.2.
|
|
176
|
-
"@epoch-ai/cli-linux-arm64-musl": "2.2.
|
|
177
|
-
"@epoch-ai/cli-linux-x64-musl": "2.2.
|
|
178
|
-
"@epoch-ai/cli-linux-x64-baseline-musl": "2.2.
|
|
179
|
-
"@epoch-ai/cli-windows-arm64": "2.2.
|
|
180
|
-
"@epoch-ai/cli-windows-x64": "2.2.
|
|
181
|
-
"@epoch-ai/cli-windows-x64-baseline": "2.2.
|
|
170
|
+
"@epoch-ai/cli-darwin-arm64": "2.2.10",
|
|
171
|
+
"@epoch-ai/cli-darwin-x64": "2.2.10",
|
|
172
|
+
"@epoch-ai/cli-darwin-x64-baseline": "2.2.10",
|
|
173
|
+
"@epoch-ai/cli-linux-arm64": "2.2.10",
|
|
174
|
+
"@epoch-ai/cli-linux-x64": "2.2.10",
|
|
175
|
+
"@epoch-ai/cli-linux-x64-baseline": "2.2.10",
|
|
176
|
+
"@epoch-ai/cli-linux-arm64-musl": "2.2.10",
|
|
177
|
+
"@epoch-ai/cli-linux-x64-musl": "2.2.10",
|
|
178
|
+
"@epoch-ai/cli-linux-x64-baseline-musl": "2.2.10",
|
|
179
|
+
"@epoch-ai/cli-windows-arm64": "2.2.10",
|
|
180
|
+
"@epoch-ai/cli-windows-x64": "2.2.10",
|
|
181
|
+
"@epoch-ai/cli-windows-x64-baseline": "2.2.10"
|
|
182
182
|
},
|
|
183
183
|
"overrides": {
|
|
184
184
|
"drizzle-orm": "1.0.0-beta.19-d95b7a4"
|
package/script/publish.ts
CHANGED
|
@@ -46,9 +46,9 @@ for (const [name] of Object.entries(binaries)) {
|
|
|
46
46
|
if (process.platform !== "win32") {
|
|
47
47
|
await $`chmod -R 755 .`.cwd(pkgDir)
|
|
48
48
|
}
|
|
49
|
-
await $`npm publish --access public --tag
|
|
49
|
+
await $`npm publish --access public --tag ${Script.channel}`.cwd(pkgDir).nothrow()
|
|
50
50
|
}
|
|
51
|
-
await $`cd ./dist/${pkg.name} && npm publish --access public --tag
|
|
51
|
+
await $`cd ./dist/${pkg.name} && npm publish --access public --tag ${Script.channel}`.nothrow()
|
|
52
52
|
|
|
53
53
|
// const image = "ghcr.io/benjamesmurray/epoch-cli"
|
|
54
54
|
// const platforms = "linux/amd64,linux/arm64"
|