Last active
May 12, 2020 02:15
-
-
Save javascripto/f632d9bac0ca1363625edc9aa9d3d562 to your computer and use it in GitHub Desktop.
Template react|scss|pug com parcel bundler
This file contains hidden or 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
| #!/usr/bin/env sh | |
| mkdir src | |
| cat << STYLE > src/style.scss | |
| h1 { | |
| color: blue; | |
| } | |
| STYLE | |
| cat << PUG > src/index.pug | |
| div#root | |
| script(src="main.tsx") | |
| PUG | |
| cat << NPM > package.json | |
| { | |
| "scripts": { | |
| "start": "parcel src/index.pug", | |
| "build": "parcel build src/index.pug" | |
| } | |
| } | |
| NPM | |
| # react | |
| cat << TSX > src/main.tsx | |
| import React from 'react' | |
| import { render } from 'react-dom' | |
| import './style.scss' | |
| const App = () => <h1>Olá Mundo</h1> | |
| render(<App/>, document.querySelector('#root')) | |
| TSX | |
| cat << TSCONFIG > tsconfig.json | |
| { | |
| "compilerOptions": { | |
| "allowSyntheticDefaultImports": true, | |
| "jsx": "react", | |
| "module": "commonjs", | |
| "noImplicitAny": true, | |
| "outDir": "./build/", | |
| "preserveConstEnums": true, | |
| "sourceMap": true, | |
| "target": "es5" | |
| }, | |
| "include": [ | |
| "./src/**/*" | |
| ] | |
| } | |
| TSCONFIG | |
| npm install -D parcel-bundler @types/react @types/react-dom | |
| npm start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment