Created
November 7, 2018 04:27
-
-
Save midnightcodr/6b05c803445f094138e920dd9cc1e627 to your computer and use it in GitHub Desktop.
create-parcel-app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create-parcel-app() { | |
[ $# -lt 1 ] && echo "$funcstack[1] project-name" | |
project=$1 | |
if [ -e $project ]; then | |
echo "object $project already exists" | |
return | |
fi | |
mkdir -p $project/src | |
cd $project | |
cat << EOL > src/index.html | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> | |
<body> | |
<div id="root"></div> | |
<script src="./index.js"></script> | |
</body> | |
</html> | |
EOL | |
echo "console.log('ready')" > src/index.js | |
yarn init -y | |
node -e 'var obj = require("./package.json"); obj.scripts={ dev: "parcel ./src/index.html", build: "parcel build ./src/index.html/" }; console.log(JSON.stringify(obj, null, 2));' > _package.json | |
mv _package.json package.json | |
yarn add react react-dom | |
yarn add -D parcel-bundler babel-preset-react babel-preset-env | |
node -e 'var obj={presets:["env", "react"]};console.log(JSON.stringify(obj, null, 2));' > .babelrc | |
echo "All done. To get started" | |
echo "npm run dev" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment