tsoft-cli 3.10.1 → 3.10.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/CHANGELOG.md +6 -0
- package/README.md +20 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to T-Soft CLI will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.10.2] - 2026-08-03
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- The README documented `tsoft theme publish` as the way to publish a theme. The canonical command is `tsoft theme push`; `publish` is a deprecated alias that prints a warning and forwards to it. `push` did not appear in the README at all, so anyone starting from the npm package page was sent down the deprecated path and hit a warning on their first command. The command table and examples now use `push`, and the deprecated `publish` and `submit` aliases are covered by a single backwards-compatibility note rather than being advertised as commands.
|
|
12
|
+
- Two other rows in the command table had drifted from the code: `tsoft theme create` accepts an optional theme name argument, and `tsoft theme push` supports `--verbose`. Neither was documented.
|
|
13
|
+
|
|
8
14
|
## [3.10.1] - 2026-07-30
|
|
9
15
|
|
|
10
16
|
### Fixed
|
package/README.md
CHANGED
|
@@ -40,28 +40,33 @@ tsoft theme dev
|
|
|
40
40
|
|
|
41
41
|
### Theme Management
|
|
42
42
|
|
|
43
|
-
| Command
|
|
44
|
-
|
|
|
45
|
-
| `tsoft theme list`
|
|
46
|
-
| `tsoft theme create`
|
|
47
|
-
| `tsoft theme pull`
|
|
48
|
-
| `tsoft theme use [name]`
|
|
49
|
-
| `tsoft theme dev [name]`
|
|
50
|
-
| `tsoft theme
|
|
51
|
-
| `tsoft theme section list`
|
|
52
|
-
| `tsoft theme section add`
|
|
53
|
-
|
|
54
|
-
|
|
43
|
+
| Command | Description |
|
|
44
|
+
| -------------------------- | --------------------------------------- |
|
|
45
|
+
| `tsoft theme list` | List all themes |
|
|
46
|
+
| `tsoft theme create [name]` | Create a new theme |
|
|
47
|
+
| `tsoft theme pull` | Pull an existing theme |
|
|
48
|
+
| `tsoft theme use [name]` | Set the active theme |
|
|
49
|
+
| `tsoft theme dev [name]` | Start dev mode (hot-reload) |
|
|
50
|
+
| `tsoft theme push [name]` | Push theme files to your store |
|
|
51
|
+
| `tsoft theme section list` | List blocks and sections |
|
|
52
|
+
| `tsoft theme section add` | Add a section (interactive) |
|
|
53
|
+
|
|
54
|
+
`tsoft theme publish` and `tsoft theme submit` are deprecated aliases kept for backwards compatibility. `publish` forwards to `push`; submission is now done from the partner panel.
|
|
55
|
+
|
|
56
|
+
## Pushing a Theme
|
|
55
57
|
|
|
56
58
|
```bash
|
|
57
59
|
# Using the active theme
|
|
58
|
-
tsoft theme
|
|
60
|
+
tsoft theme push
|
|
59
61
|
|
|
60
62
|
# Using a specific theme
|
|
61
|
-
tsoft theme
|
|
63
|
+
tsoft theme push my-theme
|
|
64
|
+
|
|
65
|
+
# With verbose error output
|
|
66
|
+
tsoft theme push --verbose
|
|
62
67
|
```
|
|
63
68
|
|
|
64
|
-
On the first
|
|
69
|
+
On the first push you enter the initial version number. Subsequent updates prompt for a semantic-versioning bump type (patch / minor / major).
|
|
65
70
|
|
|
66
71
|
## Security
|
|
67
72
|
|