@lumy-pack/syncpoint 0.0.1

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.
@@ -0,0 +1,29 @@
1
+ # ──────────────────────────────────────────
2
+ # Syncpoint Configuration
3
+ # ──────────────────────────────────────────
4
+
5
+ backup:
6
+ # (Required) List of files/directories to backup. Supports ~ expansion and glob patterns.
7
+ targets:
8
+ - ~/.zshrc
9
+ - ~/.zprofile
10
+ - ~/.gitconfig
11
+ - ~/.gitignore_global
12
+ - ~/.ssh/config
13
+ - ~/.config/starship.toml
14
+
15
+ # (Required) List of glob patterns to exclude from backup.
16
+ exclude:
17
+ - "**/*.swp"
18
+ - "**/.DS_Store"
19
+
20
+ # (Required) Backup archive filename pattern.
21
+ # Available variables: {hostname}, {datetime}
22
+ filename: "{hostname}_{datetime}"
23
+
24
+ # (Optional) Backup archive destination path. Default: ~/.syncpoint/backups/
25
+ # destination: /path/to/custom/backups
26
+
27
+ scripts:
28
+ # (Optional) Whether to include scripts/ directory in backup. Default: true
29
+ includeInBackup: true
@@ -0,0 +1,28 @@
1
+ # ──────────────────────────────────────────
2
+ # Syncpoint Provisioning Template
3
+ # ──────────────────────────────────────────
4
+ # Usage: syncpoint provision <template-name>
5
+ # syncpoint provision <template-name> --dry-run
6
+
7
+ # (Required) Template name.
8
+ name: Example Setup
9
+
10
+ # (Optional) Template description.
11
+ description: Example provisioning template
12
+
13
+ # (Optional) Backup name to restore automatically after provisioning.
14
+ # backup: my-backup-name
15
+
16
+ # (Optional) Whether sudo privilege is required. If true, requests sudo authentication before execution.
17
+ # sudo: false
18
+
19
+ # (Required) List of provisioning steps. At least 1 step required.
20
+ steps:
21
+ - name: Check Node.js # (Required) Step name
22
+ description: Verify Node.js # (Optional) Step description
23
+ command: node --version # (Required) Shell command to execute
24
+ skip_if: which node # (Optional) Skip this step if this command exits with code 0
25
+ continue_on_error: true # (Optional) Continue to next step even if this fails. Default: false
26
+
27
+ - name: Hello World
28
+ command: echo "Hello from syncpoint!"
package/dist/cli.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};