@dx-pkg/mksymlink 1.0.9 → 1.0.10
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/package.json +1 -1
- package/src/commands/index.js +3 -3
package/package.json
CHANGED
package/src/commands/index.js
CHANGED
|
@@ -16,7 +16,7 @@ program
|
|
|
16
16
|
.option('-s, --source <path>', 'Source path (defaults to current directory)')
|
|
17
17
|
.option('-t, --target <path>', 'Target symlink path (auto-generated if not provided)')
|
|
18
18
|
.option('--type <type>', 'Symlink type for Windows: file, dir, junction (default: junction)', 'junction')
|
|
19
|
-
.option('-f, --force', 'Force overwrite existing symlink',
|
|
19
|
+
.option('-f, --force', 'Force overwrite existing symlink', true)
|
|
20
20
|
.action(async (options) => {
|
|
21
21
|
try {
|
|
22
22
|
const command = mksymlink_command_factory_1.MkSymlinkCommandFactory.create(options);
|
|
@@ -31,8 +31,8 @@ program
|
|
|
31
31
|
program
|
|
32
32
|
.command('quick', { isDefault: true })
|
|
33
33
|
.description('Quick symlink creation from current directory (default command)')
|
|
34
|
-
.option('--type <type>', 'Symlink type for Windows: file, dir, junction (default:
|
|
35
|
-
.option('-f, --force', 'Force overwrite existing symlink',
|
|
34
|
+
.option('--type <type>', 'Symlink type for Windows: file, dir, junction (default: junction)', 'junction')
|
|
35
|
+
.option('-f, --force', 'Force overwrite existing symlink', true)
|
|
36
36
|
.action(async (options) => {
|
|
37
37
|
try {
|
|
38
38
|
const command = mksymlink_command_factory_1.MkSymlinkCommandFactory.create(options);
|