├── .all-contributorsrc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── other ├── CODE_OF_CONDUCT.md ├── EXAMPLES.md ├── ROADMAP.md └── split-guide-video.png ├── package.json ├── src ├── bin │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── index.js.snap │ │ └── index.js │ └── index.js ├── index.js └── utils.js └── test └── fixtures ├── generate-ignore-multiple └── templates │ ├── README.md │ ├── foo.ignore-me.js │ └── foo.no-copy.js ├── generate-ignore-one └── templates │ ├── README.md │ └── foo.ignore-me.js ├── generate-no-clean ├── src-final │ └── persist.js ├── src │ └── persist.js └── templates │ └── README.md ├── generate-silent-all └── templates │ └── README.md ├── generate-silent-success └── templates │ └── README.md ├── generate-with-args └── guides │ ├── foo │ ├── bar │ │ └── README.md │ └── final-only.md │ └── root.js └── generate └── templates ├── foo ├── bar │ └── README.md └── final-only.md ├── index.html ├── root.css └── root.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/README.md -------------------------------------------------------------------------------- /other/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/other/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /other/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/other/EXAMPLES.md -------------------------------------------------------------------------------- /other/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/other/ROADMAP.md -------------------------------------------------------------------------------- /other/split-guide-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/other/split-guide-video.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/package.json -------------------------------------------------------------------------------- /src/bin/__tests__/__snapshots__/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/src/bin/__tests__/__snapshots__/index.js.snap -------------------------------------------------------------------------------- /src/bin/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/src/bin/__tests__/index.js -------------------------------------------------------------------------------- /src/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/src/bin/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/fixtures/generate-ignore-multiple/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate-ignore-multiple/templates/README.md -------------------------------------------------------------------------------- /test/fixtures/generate-ignore-multiple/templates/foo.ignore-me.js: -------------------------------------------------------------------------------- 1 | // this file will be ignored 2 | // sweet right?! 3 | -------------------------------------------------------------------------------- /test/fixtures/generate-ignore-multiple/templates/foo.no-copy.js: -------------------------------------------------------------------------------- 1 | // don't copy me! 2 | // nice 👓 3 | -------------------------------------------------------------------------------- /test/fixtures/generate-ignore-one/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate-ignore-one/templates/README.md -------------------------------------------------------------------------------- /test/fixtures/generate-ignore-one/templates/foo.ignore-me.js: -------------------------------------------------------------------------------- 1 | // this file will be ignored 2 | // sweet right?! 3 | -------------------------------------------------------------------------------- /test/fixtures/generate-no-clean/src-final/persist.js: -------------------------------------------------------------------------------- 1 | // this will not get deleted either! 2 | // isn't that cool!? 😎 3 | -------------------------------------------------------------------------------- /test/fixtures/generate-no-clean/src/persist.js: -------------------------------------------------------------------------------- 1 | // this will not get deleted! 2 | // isn't that cool!? 😎 3 | -------------------------------------------------------------------------------- /test/fixtures/generate-no-clean/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate-no-clean/templates/README.md -------------------------------------------------------------------------------- /test/fixtures/generate-silent-all/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate-silent-all/templates/README.md -------------------------------------------------------------------------------- /test/fixtures/generate-silent-success/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate-silent-success/templates/README.md -------------------------------------------------------------------------------- /test/fixtures/generate-with-args/guides/foo/bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate-with-args/guides/foo/bar/README.md -------------------------------------------------------------------------------- /test/fixtures/generate-with-args/guides/foo/final-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate-with-args/guides/foo/final-only.md -------------------------------------------------------------------------------- /test/fixtures/generate-with-args/guides/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate-with-args/guides/root.js -------------------------------------------------------------------------------- /test/fixtures/generate/templates/foo/bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate/templates/foo/bar/README.md -------------------------------------------------------------------------------- /test/fixtures/generate/templates/foo/final-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate/templates/foo/final-only.md -------------------------------------------------------------------------------- /test/fixtures/generate/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate/templates/index.html -------------------------------------------------------------------------------- /test/fixtures/generate/templates/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate/templates/root.css -------------------------------------------------------------------------------- /test/fixtures/generate/templates/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/split-guide/HEAD/test/fixtures/generate/templates/root.js --------------------------------------------------------------------------------