@immich/cli 2.7.4 → 3.0.0-rc.0
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 +2 -7
- package/dist/index.js +3284 -2867
- package/mise.toml +24 -1
- package/package.json +9 -12
- package/.nvmrc +0 -1
package/mise.toml
CHANGED
|
@@ -7,7 +7,7 @@ run = "vite build"
|
|
|
7
7
|
|
|
8
8
|
[tasks.test]
|
|
9
9
|
env._.path = "./node_modules/.bin"
|
|
10
|
-
run = "
|
|
10
|
+
run = "vitest"
|
|
11
11
|
|
|
12
12
|
[tasks.lint]
|
|
13
13
|
env._.path = "./node_modules/.bin"
|
|
@@ -27,3 +27,26 @@ run = "prettier --write ."
|
|
|
27
27
|
[tasks.check]
|
|
28
28
|
env._.path = "./node_modules/.bin"
|
|
29
29
|
run = "tsc --noEmit"
|
|
30
|
+
|
|
31
|
+
[tasks.ci-publish]
|
|
32
|
+
depends = ["//:sdk:install", "//:sdk:build"]
|
|
33
|
+
run = [
|
|
34
|
+
{ task = ":install" },
|
|
35
|
+
{ task = ":build" },
|
|
36
|
+
"pnpm publish --provenance --no-git-checks",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[tasks.ci-unit]
|
|
40
|
+
depends = ["//:sdk:install", "//:sdk:build"]
|
|
41
|
+
run = [
|
|
42
|
+
{ task = ":install" },
|
|
43
|
+
{ task = ":format" },
|
|
44
|
+
{ task = ":lint" },
|
|
45
|
+
{ task = ":check" },
|
|
46
|
+
{ task = ":test --run" },
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[tasks.checklist]
|
|
50
|
+
run = [
|
|
51
|
+
{ task = ":ci-unit" },
|
|
52
|
+
]
|
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@immich/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-rc.0",
|
|
4
4
|
"description": "Command Line Interface (CLI) for Immich",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/immich-app/immich.git",
|
|
8
|
+
"directory": "packages/cli"
|
|
9
|
+
},
|
|
5
10
|
"type": "module",
|
|
6
11
|
"exports": "./dist/index.js",
|
|
7
12
|
"bin": {
|
|
@@ -19,11 +24,11 @@
|
|
|
19
24
|
"@types/lodash-es": "^4.17.12",
|
|
20
25
|
"@types/micromatch": "^4.0.9",
|
|
21
26
|
"@types/mock-fs": "^4.13.1",
|
|
22
|
-
"@types/node": "^24.12.
|
|
27
|
+
"@types/node": "^24.12.4",
|
|
23
28
|
"@vitest/coverage-v8": "^4.0.0",
|
|
24
29
|
"byte-size": "^9.0.0",
|
|
25
30
|
"cli-progress": "^3.12.0",
|
|
26
|
-
"commander": "^
|
|
31
|
+
"commander": "^15.0.0",
|
|
27
32
|
"eslint": "^10.0.0",
|
|
28
33
|
"eslint-config-prettier": "^10.1.8",
|
|
29
34
|
"eslint-plugin-prettier": "^5.1.3",
|
|
@@ -38,12 +43,7 @@
|
|
|
38
43
|
"vitest": "^4.0.0",
|
|
39
44
|
"vitest-fetch-mock": "^0.4.0",
|
|
40
45
|
"yaml": "^2.3.1",
|
|
41
|
-
"@immich/sdk": "
|
|
42
|
-
},
|
|
43
|
-
"repository": {
|
|
44
|
-
"type": "git",
|
|
45
|
-
"url": "git+https://github.com/immich-app/immich.git",
|
|
46
|
-
"directory": "cli"
|
|
46
|
+
"@immich/sdk": "3.0.0-rc.0"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": ">=20.0.0"
|
|
@@ -55,9 +55,6 @@
|
|
|
55
55
|
"lodash-es": "^4.17.21",
|
|
56
56
|
"micromatch": "^4.0.8"
|
|
57
57
|
},
|
|
58
|
-
"volta": {
|
|
59
|
-
"node": "24.14.1"
|
|
60
|
-
},
|
|
61
58
|
"scripts": {
|
|
62
59
|
"build": "vite build",
|
|
63
60
|
"build:dev": "vite build --sourcemap true",
|
package/.nvmrc
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
24.14.1
|