task-pipeliner 0.1.0 → 0.1.2
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.ko.md +5 -1
- package/README.md +14 -7
- package/package.json +9 -1
package/README.ko.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> 조건 기반 작업 파이프라인 실행기로 아름다운 CLI 출력을 제공합니다
|
|
4
4
|
|
|
5
|
-
**버전:** 0.1.
|
|
5
|
+
**버전:** 0.1.2
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
|
|
12
12
|
**task-pipeliner**는 간단한 YAML 또는 JSON 파일로 복잡한 작업 파이프라인을 정의할 수 있는 현대적인 워크플로우 자동화 도구입니다. 조건부 실행, 병렬 작업, 대화형 프롬프트, 그리고 아름다운 터미널 출력을 제공하여 빌드 스크립트, 배포 워크플로우, CI/CD 파이프라인에 완벽합니다.
|
|
13
13
|
|
|
14
|
+
**README-Language-Map** [KR [한국어 버전]](https://github.com/racgoo/task-pipeliner/blob/main/README.ko.md) / [EN [English Version]](https://github.com/racgoo/task-pipeliner)
|
|
15
|
+
|
|
14
16
|
## ✨ 주요 기능
|
|
15
17
|
|
|
16
18
|
- **조건 기반 실행** - 파일 존재 여부, 사용자 선택, 환경 변수 등을 기반으로 단계 실행
|
|
@@ -27,6 +29,8 @@
|
|
|
27
29
|
|
|
28
30
|
- 📚 **[문서](https://task-pipeliner.racgoo.com/)** - 완전한 DSL 참조 및 가이드
|
|
29
31
|
- 🎨 **[시각적 생성기](https://task-pipeliner-generator.racgoo.com/)** - 브라우저에서 시각적으로 워크플로우 생성
|
|
32
|
+
- 💻 **[GitHub](https://github.com/racgoo/task-pipeliner)** - 소스 코드 및 이슈 추적
|
|
33
|
+
- 📦 **[npm](https://www.npmjs.com/package/task-pipeliner)** - npm 레지스트리 패키지
|
|
30
34
|
> **CLI 명령어**:
|
|
31
35
|
```bash
|
|
32
36
|
tp open generator # 시각적 생성기 열기
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> A powerful, condition-based task pipeline runner with beautiful CLI output
|
|
4
4
|
|
|
5
|
-
**Version:** 0.1.
|
|
5
|
+
**Version:** 0.1.2
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
@@ -11,19 +11,26 @@
|
|
|
11
11
|
|
|
12
12
|
**task-pipeliner** is a modern workflow automation tool that lets you define complex task pipelines using simple YAML or JSON files. With conditional execution, parallel tasks, interactive prompts, and beautiful terminal output, it's perfect for build scripts, deployment workflows, and CI/CD pipelines.
|
|
13
13
|
|
|
14
|
+
**README-Language-Map** [KR [한국어 버전]](https://github.com/racgoo/task-pipeliner/blob/main/README.ko.md) / [EN [English Version]](https://github.com/racgoo/task-pipeliner)
|
|
15
|
+
|
|
14
16
|
## ✨ Features
|
|
15
17
|
|
|
16
|
-
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
|
|
18
|
+
- **Condition-based execution** - Run steps based on file existence, user choices, environment variables, and more
|
|
19
|
+
|
|
20
|
+
- **Parallel execution** - Run multiple tasks simultaneously
|
|
21
|
+
|
|
22
|
+
- **Interactive prompts** - Ask users for input and choices during execution
|
|
23
|
+
|
|
24
|
+
- **YAML & JSON support** - Declarative pipelining in YAML & JSON formats
|
|
25
|
+
|
|
26
|
+
- **Variable substitution** - Use `{{variables}}` throughout your workflows
|
|
22
27
|
|
|
23
28
|
## 🔗 Resources
|
|
24
29
|
|
|
25
30
|
- 📚 **[Documentation](https://task-pipeliner.racgoo.com/)** - Complete DSL reference and guides
|
|
26
31
|
- 🎨 **[Visual Generator](https://task-pipeliner-generator.racgoo.com/)** - Create workflows visually in your browser
|
|
32
|
+
- 💻 **[GitHub](https://github.com/racgoo/task-pipeliner)** - Source code and issue tracking
|
|
33
|
+
- 📦 **[npm](https://www.npmjs.com/package/task-pipeliner)** - Package on npm registry
|
|
27
34
|
- 💻 **CLI Commands**:
|
|
28
35
|
```bash
|
|
29
36
|
tp open generator # Open visual generator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "task-pipeliner",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A task pipeline runner with condition-based workflow execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
],
|
|
18
18
|
"author": "",
|
|
19
19
|
"license": "MIT",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/racgoo/task-pipeliner.git"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/racgoo/task-pipeliner#readme",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/racgoo/task-pipeliner/issues"
|
|
27
|
+
},
|
|
20
28
|
"dependencies": {
|
|
21
29
|
"@eslint/js": "^9.39.2",
|
|
22
30
|
"boxen": "^8.0.1",
|