a gitignored javascript (react/ES6) playground for testing node modules, and random ideas. Also has support for sass
The Docs / README containing awesome project tips can be found at the create-react-app README
Simply clone the project:
git clone https://github.com/torch2424/js-playground.git
To stop all changes from being detected in the project, run the assume unchanged script:
npm run assume-unchanged
# Will runL # ./assume-unchanged.sh true
For developing on the project itself, changes can be detected again using:
npm run assume-changed
# Will run: ./assume-unchanged.sh false
To reset the project back to master after testing something, run the followoing:
npm run reset
# Will run: npm run assume-changed && git reset --hard origin/master && npm run assume-unchanged
Stop all changes from being detected:
# ./assume-unchanged.sh true
npm run assume-unchanged
Simply add a random node module to the project
npm install --save pretty-bytes
And notice how it will not detect any changes!
LICENSE under Apache 2.0