NLeSC / create-react-app

Create React apps with no build configuration.
Other
1 stars 1 forks source link

add notes on how to use verdaccio to test bleeding edge versions #50

Open jspaaks opened 7 years ago

jspaaks commented 7 years ago

something along the lines of

# install npm via nvm
# yarnpkg cache clean
# npm cache clean

npm install -g verdaccio
# start verdaccio
verdaccio
npm adduser --registry http://localhost:4873/
npm set registry http://localhost:4873
# check in browser
git clone https://github.com/NLeSC/create-react-app.git
cd create-react-app
git checkout master
cd packages/tslint-config-react-app
npm publish
cd ../../
cd packages/react-scripts
npm publish
# install facebook's version 
npm install -g create-react-app
create-react-app --scripts-version=@nlesc/react-scripts test-app