Skip to content

Commit d041e1e

Browse files
committed
resetup quick fix
1 parent 369efba commit d041e1e

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

resetup.ps1

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
$manager = "pnpm"
22

33
$disabledList = @(
4-
'vue-composable'
4+
"vue-composable"
55

6-
'shadow-flux'
6+
"shadow-flux"
77
)
88

99
$nextList = @(
10-
'vue-composable'
10+
"vue-composable"
1111

12-
'vue'
13-
'vuex'
14-
'vue-router'
15-
'rollup-plugin-vue'
16-
'@vue/compiler-sfc'
12+
"vue"
13+
"vuex"
14+
"vue-router"
15+
"rollup-plugin-vue"
16+
"@vue/compiler-sfc"
1717

18-
'@pathscale/vue3-ui'
19-
'@pathscale/bulma-css-var-only'
20-
'@pathscale/bulma-extensions-css-var'
21-
'@pathscale/bulma-pull-2981-css-var-only'
18+
"@pathscale/vue3-ui"
19+
"@pathscale/bulma-css-var-only"
20+
"@pathscale/bulma-extensions-css-var"
21+
"@pathscale/bulma-pull-2981-css-var-only"
2222
)
2323

2424
$disabled = $disabledList -join ","
2525
$next = $nextList -join ","
2626

27-
ncu -u --dep 'prod,dev' --concurrency 16 -x $disabled
28-
ncu -u --dep 'prod,dev' --concurrency 16 --target newest -f $next
27+
ncu -u --dep "prod,dev" --concurrency 16 -x $disabled
28+
ncu -u --dep "prod,dev" --concurrency 16 --target newest -f $next
2929
sort-package-json
3030
wsl rm -rf node_modules package-lock.json yarn.lock pnpm-lock.yaml
31-
Invoke-Expression $manager i
31+
Invoke-Expression "${manager} i"

0 commit comments

Comments
 (0)