@dx-pkg/mksymlink 1.0.8 → 1.0.9
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 +1 -1
package/package.json
CHANGED
package/src/commands/index.js
CHANGED
|
@@ -15,7 +15,7 @@ program
|
|
|
15
15
|
.description('Create a symbolic link')
|
|
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
|
-
.option('--type <type>', 'Symlink type for Windows: file, dir, junction (default:
|
|
18
|
+
.option('--type <type>', 'Symlink type for Windows: file, dir, junction (default: junction)', 'junction')
|
|
19
19
|
.option('-f, --force', 'Force overwrite existing symlink', false)
|
|
20
20
|
.action(async (options) => {
|
|
21
21
|
try {
|