├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── boilerplate ├── .babelrc.js ├── .eslintignore ├── .eslintrc.js ├── .prettierrc ├── .vscode │ └── settings.json ├── jest.config.js ├── package-lock.json ├── package.json ├── public │ └── index.html ├── src │ ├── components │ │ ├── App.js │ │ ├── AsyncPage.js │ │ ├── Home.js │ │ ├── NoPage.js │ │ ├── main.scss │ │ └── styles.css │ ├── config │ │ ├── index.js │ │ └── polyfill.js │ ├── index.js │ └── utils │ │ ├── __tests__ │ │ └── math.test.js │ │ └── math.js ├── webpack.config.js └── webpack │ ├── addons │ └── webpack.bundleanalyzer.js │ ├── resolve.js │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── documents ├── 1-basic-build.md ├── 10-react.md ├── 11-eslint-prettier.md ├── 12-publish.md ├── 2-add-babel.md ├── 3-output.md ├── 4-dev-environment.md ├── 5-production.md ├── 6-code-split.md ├── 7-caching.md ├── 8-build-performance.md ├── 9-resolve.md └── modules.md ├── index.js ├── manage.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | boilerplate/node_modules/ -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/README.md -------------------------------------------------------------------------------- /boilerplate/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/.babelrc.js -------------------------------------------------------------------------------- /boilerplate/.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boilerplate/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/.eslintrc.js -------------------------------------------------------------------------------- /boilerplate/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/.prettierrc -------------------------------------------------------------------------------- /boilerplate/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/.vscode/settings.json -------------------------------------------------------------------------------- /boilerplate/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/jest.config.js -------------------------------------------------------------------------------- /boilerplate/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/package-lock.json -------------------------------------------------------------------------------- /boilerplate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/package.json -------------------------------------------------------------------------------- /boilerplate/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/public/index.html -------------------------------------------------------------------------------- /boilerplate/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/components/App.js -------------------------------------------------------------------------------- /boilerplate/src/components/AsyncPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/components/AsyncPage.js -------------------------------------------------------------------------------- /boilerplate/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/components/Home.js -------------------------------------------------------------------------------- /boilerplate/src/components/NoPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/components/NoPage.js -------------------------------------------------------------------------------- /boilerplate/src/components/main.scss: -------------------------------------------------------------------------------- 1 | a { 2 | font-size: 30px; 3 | color: skyblue; 4 | } 5 | -------------------------------------------------------------------------------- /boilerplate/src/components/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/components/styles.css -------------------------------------------------------------------------------- /boilerplate/src/config/index.js: -------------------------------------------------------------------------------- 1 | import './polyfill'; 2 | -------------------------------------------------------------------------------- /boilerplate/src/config/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/config/polyfill.js -------------------------------------------------------------------------------- /boilerplate/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/index.js -------------------------------------------------------------------------------- /boilerplate/src/utils/__tests__/math.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/utils/__tests__/math.test.js -------------------------------------------------------------------------------- /boilerplate/src/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/src/utils/math.js -------------------------------------------------------------------------------- /boilerplate/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/webpack.config.js -------------------------------------------------------------------------------- /boilerplate/webpack/addons/webpack.bundleanalyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/webpack/addons/webpack.bundleanalyzer.js -------------------------------------------------------------------------------- /boilerplate/webpack/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/webpack/resolve.js -------------------------------------------------------------------------------- /boilerplate/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/webpack/webpack.common.js -------------------------------------------------------------------------------- /boilerplate/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/webpack/webpack.dev.js -------------------------------------------------------------------------------- /boilerplate/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/boilerplate/webpack/webpack.prod.js -------------------------------------------------------------------------------- /documents/1-basic-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/1-basic-build.md -------------------------------------------------------------------------------- /documents/10-react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/10-react.md -------------------------------------------------------------------------------- /documents/11-eslint-prettier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/11-eslint-prettier.md -------------------------------------------------------------------------------- /documents/12-publish.md: -------------------------------------------------------------------------------- 1 | # publish 2 | 3 | 1. folder 명을 입력하세요. 4 | 2. npm i 5 | 3. 다 되면 Done! 6 | 4. 명령어 소개 7 | npm start -------------------------------------------------------------------------------- /documents/2-add-babel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/2-add-babel.md -------------------------------------------------------------------------------- /documents/3-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/3-output.md -------------------------------------------------------------------------------- /documents/4-dev-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/4-dev-environment.md -------------------------------------------------------------------------------- /documents/5-production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/5-production.md -------------------------------------------------------------------------------- /documents/6-code-split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/6-code-split.md -------------------------------------------------------------------------------- /documents/7-caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/7-caching.md -------------------------------------------------------------------------------- /documents/8-build-performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/8-build-performance.md -------------------------------------------------------------------------------- /documents/9-resolve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/9-resolve.md -------------------------------------------------------------------------------- /documents/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/documents/modules.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/index.js -------------------------------------------------------------------------------- /manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/manage.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoilzz/create-react-packzz/HEAD/package.json --------------------------------------------------------------------------------