You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1、 在pnpm run dev的时候"dev": "pnpm -r --filter ./packages/ --parallel run dev"会报错 No projects matched the filters in "E:\desktop\qiankun-template"
后来改成pnpm -r --parallel --filter ./packages/* run dev就可以正常运行了
2、无法执行clean命令,因为windows不支持rm指令,后来改成了"clean": "for /r %i in (node_modules) do @if exist "%i" rd /s /q "%i"",可以正常清除了
The text was updated successfully, but these errors were encountered:
1、 在pnpm run dev的时候"dev": "pnpm -r --filter ./packages/ --parallel run dev"会报错 No projects matched the filters in "E:\desktop\qiankun-template"
后来改成pnpm -r --parallel --filter ./packages/* run dev就可以正常运行了
2、无法执行clean命令,因为windows不支持rm指令,后来改成了"clean": "for /r %i in (node_modules) do @if exist "%i" rd /s /q "%i"",可以正常清除了
The text was updated successfully, but these errors were encountered: