File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- $manager = " pnpm "
1
+ $manager = " bun "
2
2
3
3
$disabledList = @ (
4
4
" vue-composable"
@@ -27,5 +27,5 @@ $next = $nextList -join ","
27
27
ncu - u -- dep " prod,dev" -- concurrency 16 - x $disabled
28
28
ncu - u -- dep " prod,dev" -- concurrency 16 -- target newest -f $next
29
29
sort- package- json
30
- wsl rm - rf node_modules package- lock.json yarn.lock pnpm- lock.yaml
30
+ wsl rm - rf node_modules package- lock.json yarn.lock pnpm- lock.yaml bun.lock
31
31
Invoke-Expression " ${manager} i"
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ $command = "build"
3
3
$projRoot = " D:\CodeProjects"
4
4
5
5
Set-Location $projRoot \rollup- plugin- vue3- ui- css- purge
6
- pnpm run prepublishOnly
6
+ bun run prepublishOnly
7
7
8
8
Remove-Item - Recurse - Force - ErrorAction SilentlyContinue $projRoot \$target \node_modules\@pathscale \rollup- plugin- vue3- ui- css- purge\dist
9
9
Move-Item $projRoot \rollup- plugin- vue3- ui- css- purge\dist $projRoot \$target \node_modules\@pathscale \rollup- plugin- vue3- ui- css- purge\dist
10
10
11
11
Set-Location $projRoot \$target \
12
12
# npm link
13
- pnpm run $command
13
+ bun run $command
14
14
.\node_modules\.bin\serve dist
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- TARGET=" vue3.dev"
4
- COMMAND=" build"
3
+ TARGET=" vue3.dev"
4
+ COMMAND=" build"
5
5
SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
6
6
PARENT_DIR=" $( dirname " $SCRIPT_DIR " ) "
7
7
8
8
# Build del plugin
9
9
cd " $SCRIPT_DIR "
10
- npm run prepublishOnly
10
+ bun run prepublishOnly
11
11
12
12
rm -rf " $PARENT_DIR /$TARGET /node_modules/@pathscale/rollup-plugin-vue3-ui-css-purge/dist"
13
13
cp -r dist " $PARENT_DIR /$TARGET /node_modules/@pathscale/rollup-plugin-vue3-ui-css-purge/"
14
14
15
15
cd " $PARENT_DIR /$TARGET "
16
- npm run $COMMAND
16
+ bun run $COMMAND
You can’t perform that action at this time.
0 commit comments