Skip to content

Commit

Permalink
fix(nuxt3): rm -rf can not work on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
LarchLiu committed Jul 16, 2023
1 parent a591f72 commit c7cfc93
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
5 changes: 3 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"scripts": {
"dev": "vite build --watch",
"build": "pnpm clean && vite build && tsc --declaration -p tsconfig.types.json --emitDeclarationOnly && node scripts/create-entrypoints.js && node scripts/check-tree-shaking.js",
"clean": "rm -rf dist/ && node scripts/create-entrypoints.js clean",
"clean": "rimraf dist/ && node scripts/create-entrypoints.js clean",
"lint": "eslint src",
"prepublishOnly": "pnpm build",
"tscheck": "tsc --noEmit",
Expand All @@ -159,6 +159,7 @@
}
},
"devDependencies": {
"ofetch": "^1.1.1"
"ofetch": "^1.1.1",
"rimraf": "^5.0.1"
}
}
15 changes: 7 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit c7cfc93

@vercel
Copy link

@vercel vercel bot commented on c7cfc93 Jul 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

star-nexus – ./

star-nexus-larchliu.vercel.app
star-nexus.vercel.app
star-nexus-git-main-larchliu.vercel.app

Please sign in to comment.