rollup / rollup-plugin-babel

This package has moved and is now available at @rollup/plugin-babel / https://github.com/rollup/plugins/tree/master/packages/babel
MIT License
702 stars 87 forks source link

use rimraf #335

Closed gingur closed 4 years ago

gingur commented 4 years ago

This adds support for removing the dist folder on windows machines during prebuild process. Ran into when attempting to install as a git url instead of npm version, which runs the build process.

nicolo-ribaudo commented 4 years ago

Why is this needed?

Andarist commented 4 years ago

@gingur please update also package-lock.json (just install this using npm)

gingur commented 4 years ago

@Andarist rimraf was already in the lock from del which is brought in via lint-staged. This is why I used an older version, for a better dedupe. The end result was no updates to the lock after performing a npm i -D rimraf@2.6.3

Andarist commented 4 years ago

Ok, thanks for the explanation!