Skip to content

Commit e4c86f2

Browse files
committed
fix: publish with updated readme
feat: NOTE Note, that in latest update when adding packages via quickpick button for adding package as devDependency has been removed You now need to write `dev:` or `d:` at the start to get dependency added as dev to your install list
1 parent a1e7cd4 commit e4c86f2

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

README.MD

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,11 @@ Currently, extension is stable enough, but there some work before its get out of
2222

2323
1. Tests
2424
2. Icon
25-
3. yarn berry support
25+
3. Yarn berry support
2626

2727
And even more.
2828

29-
**before v0.1.0 config is subject to change without any warnings**
30-
31-
## Known Issues
32-
33-
- commands can't be canceled
34-
- ...
29+
On v0.1.0 config will be probably changed.
3530

3631
<!-- ## Auto Install
3732

src/commands/addPackages.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,11 @@ export const installPackages = async (location: 'closest' | 'workspace') => {
8989
description: selectedPackages.map(({ label }) => label).join(', '),
9090
itemType: 'install-action',
9191
},
92-
...selectedPackages.map(item => ({ ...item, alwaysShow: true })),
92+
...selectedPackages.map(item => ({
93+
...item,
94+
description: item.installType === 'dev' ? `$(tools) ${item.description}` : item.description,
95+
alwaysShow: true,
96+
})),
9397
]
9498
}
9599

0 commit comments

Comments
 (0)