bluesky / bluesky-webclient

A React Material UI based web client developed in TypeScript to enable acquisition of data on the web with bluesky
BSD 3-Clause "New" or "Revised" License
12 stars 8 forks source link

BLD: fix package-lock.json #67

Closed mrakitin closed 3 years ago

mrakitin commented 3 years ago

I reverted the package-lock.json to the state before merging #62. Here are the steps I did:

$ cd <repo-dir>
$ git clean -dfx  # this removes the "node_modules/" dir
$ wget https://raw.githubusercontent.com/bluesky/bluesky-webclient/539aff12bc8ee002ec0aa096140eb9735a4600eb/package-lock.json
$ mv package-lock.json.1 package-lock.json
$ npm install
$ npm audit fix  # this fixes an issue reported by a previous command
$ npm start
mrakitin commented 3 years ago

Package versions:

$ npm --version
7.0.15
$ node --version
v15.4.0
mrakitin commented 3 years ago

Thanks, @gwbischof!