@lazycatcloud/lzc-cli 2.0.0-pre.4 → 2.0.0-pre.5
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 +11 -0
- package/lib/app/project_sync.js +1 -4
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.0-pre.5](https://gitee.com/linakesi/lzc-cli/compare/v2.0.0-pre.4...v2.0.0-pre.5) (2026-03-19)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- remove dozzle and use LPK v2
|
|
8
|
+
- read debug bridge version from package metadata
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- keep `.lzcdevignore` semantics consistent during `project sync --watch`
|
|
13
|
+
|
|
3
14
|
## [2.0.0-pre.4](https://gitee.com/linakesi/lzc-cli/compare/v2.0.0-pre.3...v2.0.0-pre.4) (2026-03-14)
|
|
4
15
|
|
|
5
16
|
### Features
|
package/lib/app/project_sync.js
CHANGED
|
@@ -64,7 +64,7 @@ function createIgnoreMatcher(rootDir) {
|
|
|
64
64
|
return ig;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
function createWatchIgnored(rootDir) {
|
|
67
|
+
export function createWatchIgnored(rootDir) {
|
|
68
68
|
const ig = createIgnoreMatcher(rootDir);
|
|
69
69
|
return (candidatePath) => {
|
|
70
70
|
const relPath = normalizePosixPath(path.relative(rootDir, candidatePath));
|
|
@@ -162,9 +162,6 @@ export function buildRsyncArgs(runtime, uid, host, rootDir, targetDir, sourceDir
|
|
|
162
162
|
const ignoreFile = path.join(rootDir, LZCDEVIGNORE_FILE);
|
|
163
163
|
if (fs.existsSync(ignoreFile)) {
|
|
164
164
|
args.push(`--exclude-from=${ignoreFile}`);
|
|
165
|
-
if (deleteMode) {
|
|
166
|
-
args.push('--delete-excluded');
|
|
167
|
-
}
|
|
168
165
|
}
|
|
169
166
|
if (sourceDir) {
|
|
170
167
|
args.push('--relative');
|