├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── __e2e__ ├── commands │ └── new.test.ts └── test-utils.ts ├── art └── logo.png ├── babel.config.js ├── bin └── index.js ├── gulpfile.js ├── jest.config.js ├── package.json ├── src ├── commands │ └── scaffold.ts ├── templates │ ├── bootstrap-3 │ │ └── index.html │ ├── bootstrap-4 │ │ └── index.html │ ├── bulma │ │ └── index.html │ ├── foundation │ │ └── index.html │ ├── materialize │ │ └── index.html │ ├── none │ │ └── index.html │ ├── semantic-ui │ │ └── index.html │ └── webpack.config.js └── utils │ ├── __tests__ │ └── helpers.test.ts │ ├── helpers.ts │ └── logger.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | src/templates 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=TypeScript 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/README.md -------------------------------------------------------------------------------- /__e2e__/commands/new.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/__e2e__/commands/new.test.ts -------------------------------------------------------------------------------- /__e2e__/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/__e2e__/test-utils.ts -------------------------------------------------------------------------------- /art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/art/logo.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/bin/index.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/scaffold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/commands/scaffold.ts -------------------------------------------------------------------------------- /src/templates/bootstrap-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/templates/bootstrap-3/index.html -------------------------------------------------------------------------------- /src/templates/bootstrap-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/templates/bootstrap-4/index.html -------------------------------------------------------------------------------- /src/templates/bulma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/templates/bulma/index.html -------------------------------------------------------------------------------- /src/templates/foundation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/templates/foundation/index.html -------------------------------------------------------------------------------- /src/templates/materialize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/templates/materialize/index.html -------------------------------------------------------------------------------- /src/templates/none/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/templates/none/index.html -------------------------------------------------------------------------------- /src/templates/semantic-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/templates/semantic-ui/index.html -------------------------------------------------------------------------------- /src/templates/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/templates/webpack.config.js -------------------------------------------------------------------------------- /src/utils/__tests__/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/utils/__tests__/helpers.test.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/scaffold-static/HEAD/yarn.lock --------------------------------------------------------------------------------