create-task-ops 0.1.5 → 0.1.6
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 -2
- package/bin/create-task-ops.js +1 -1
- package/package.json +1 -1
- package/templates/api/app/api/orbitops/tasks/[id]/route.ts +1 -1
- package/templates/api/app/api/orbitops/tasks/route.ts +1 -1
- package/templates/full/app/api/orbitops/tasks/[id]/route.ts +1 -1
- package/templates/full/app/api/orbitops/tasks/route.ts +1 -1
- package/templates/full/app/page.tsx +1 -1
- /package/templates/api/lib/{task-api.ts → orbitops/task-api.ts} +0 -0
- /package/templates/full/lib/{task-api.ts → orbitops/task-api.ts} +0 -0
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ npx create-task-ops add --docs-only
|
|
|
58
58
|
- `app/api/orbitops/health/route.ts`
|
|
59
59
|
- `app/api/orbitops/tasks/route.ts`
|
|
60
60
|
- `app/api/orbitops/tasks/[id]/route.ts`
|
|
61
|
-
- `lib/task-api.ts`
|
|
61
|
+
- `lib/orbitops/task-api.ts`
|
|
62
62
|
|
|
63
63
|
즉 기존 `package.json`, `app/page.tsx`, `app/layout.tsx`, `tsconfig.json` 같은 루트 파일은 건드리지 않는다.
|
|
64
64
|
|
|
@@ -69,7 +69,7 @@ npx create-task-ops add --docs-only
|
|
|
69
69
|
- `app/api/orbitops/health/route.ts`
|
|
70
70
|
- `app/api/orbitops/tasks/route.ts`
|
|
71
71
|
- `app/api/orbitops/tasks/[id]/route.ts`
|
|
72
|
-
- `lib/task-api.ts`
|
|
72
|
+
- `lib/orbitops/task-api.ts`
|
|
73
73
|
|
|
74
74
|
이 receiver 파일까지 강제로 교체하려면 `--force` 를 쓴다.
|
|
75
75
|
|
package/bin/create-task-ops.js
CHANGED
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|