@lightnet/cli 4.1.1 → 4.2.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/CHANGELOG.md +6 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/src/check-files.js +833 -0
- package/src/check-translations.js +15 -0
- package/src/index.js +34 -3
- package/src/support/cli-error.js +1 -0
- package/src/support/r2.js +561 -0
- package/src/types.d.ts +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @lightnet/cli
|
|
2
2
|
|
|
3
|
+
## 4.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#423](https://github.com/LightNetDev/LightNet/pull/423) [`30fabef`](https://github.com/LightNetDev/LightNet/commit/30fabef4897506cf4d0194b8883257de513ec452) - Add a new `lightnet check-files` command to validate orphaned and missing content files and thumbnails in LightNet site projects.
|
|
8
|
+
|
|
3
9
|
## 4.1.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# LightNet CLI
|
|
2
2
|
|
|
3
|
-
Command-line tools for working with LightNet sites. The CLI currently
|
|
3
|
+
Command-line tools for working with LightNet sites. The CLI currently includes translation validation and file consistency checks.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
pnpm add --D @lightnet/cli
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## LightNet CLI reference
|