NPM clean modules

前端 未结 8 645
时光取名叫无心
时光取名叫无心 2020-12-24 00:14

Is there a way to get npm to unbuild all the modules under node_modules? Something like npm rebuild that removes all build artifacts but doesn\'t rebuild them?

8条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-24 00:30

    For windows environment:

    "scripts": {
        "clean": "rmdir /s /q node_modules",
        ...
    }
    

提交回复
热议问题