1.0.8 • Published 5 years ago
@tomas2d/react-scripts v1.0.8
@ackee/react-scripts
This package includes scripts and configuration used by Create React App. Please refer to its documentation:
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with Create React App.
How to use
To create a new project with specific version of @ackee/react-scripts
, run the following command. Don't forget to replace my-app
with your project name:
npx @ackee/create-react-app my-app --scripts-version @ackee/react-scripts@1.0.0
Development
Read, how to efficiently develop the react-scripts
package and how to locally build a new skeleton from the latest template.
Testing react-scripts
Testing new template
You can run @ackee/create-react-app
with local react-scripts version:
npx @ackee/create-react-app my-test-app --scripts-version file:./create-react-app/packages/react-scripts;
Or you can just run a small script: bash ./create-test-react-app.sh
#!/usr/bin/env bash
# delete old data
rm -rf ./my-test-app;
# build skeleton with the latest local version of your react-scripts
npx @ackee/create-react-app my-test-app --scripts-version file:./create-react-app/packages/react-scripts;
Save your time, read this:
Make sure that
node_modules
aren't included in thereact-scripts
directory when running the script above. Otherwise, weird issues may occur!