├── .babelrc ├── .circleci └── config.yml ├── .codeclimate.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .nycrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── JSX_RENDER_ENGINE.md └── UPGRADE_NOTES.md ├── examples ├── .babelrc ├── README.md ├── build.js ├── package.json ├── scripts │ └── loader.js ├── src │ └── index.html ├── templates │ ├── Entry.jsx │ └── base.html ├── webpack.config.js └── yarn.lock ├── interop.js ├── package.json ├── src ├── index.js ├── integration-preact.spec.js ├── integration-react-router.spec.js ├── integration-react.spec.js ├── jsx-render-engine │ ├── constants.js │ ├── core │ │ ├── engine.js │ │ ├── engine.spec.js │ │ ├── options.js │ │ ├── processor.js │ │ ├── processor.spec.js │ │ ├── registerExtensions.js │ │ └── registerExtensions.spec.js │ ├── debug.js │ ├── index.js │ ├── index.spec.js │ ├── strategy │ │ ├── naive.js │ │ ├── naive.spec.js │ │ ├── preact.js │ │ ├── react-router │ │ │ ├── Provider.js │ │ │ ├── getDefaultPropsWithLocation.js │ │ │ ├── index.js │ │ │ ├── index.spec.js │ │ │ ├── v3.js │ │ │ └── v4.js │ │ └── react │ │ │ ├── InitialState.jsx │ │ │ ├── index.js │ │ │ ├── index.spec.js │ │ │ ├── reactTemplates.js │ │ │ ├── reactTemplates.spec.js │ │ │ ├── withInitialProps.js │ │ │ └── withInitialProps.spec.js │ └── utils │ │ ├── addFileToCollection.js │ │ ├── applyBaseFile.js │ │ ├── applyFileRenames.js │ │ ├── applyTemplate.js │ │ ├── getDefaultProps.js │ │ ├── prepareProps.js │ │ ├── preserveRawContents.js │ │ ├── preserveRawContents.spec.js │ │ ├── readTemplateFile.js │ │ ├── registerExtensionToIgnore.js │ │ ├── registerExtensionWithTransformer.js │ │ └── removeFileFromCollection.js ├── lib │ ├── backwardCompat.js │ ├── backwardCompat.spec.js │ ├── core.js │ ├── createRoutes.js │ └── createRoutes.spec.js └── withInitialProps.js ├── tests ├── constants.js ├── fixtures │ ├── others │ │ └── base-alt.html │ ├── outputs │ │ ├── baseFileDefault.html │ │ ├── default.html │ │ ├── defaultCustomKey.html │ │ ├── index.js │ │ ├── other.html │ │ ├── subdir │ │ │ └── structure.html │ │ └── variable.html │ ├── src │ │ ├── baseFile.md │ │ ├── default.md │ │ ├── preact.md │ │ ├── subdir │ │ │ └── structure.md │ │ ├── template.md │ │ └── variable.md │ └── templates │ │ ├── App.jsx │ │ ├── AppDefault.jsx │ │ ├── AppRoutes.jsx │ │ ├── CustomKey.jsx │ │ ├── Default.jsx │ │ ├── Functional.jsx │ │ ├── Other.jsx │ │ ├── Preact.jsx │ │ ├── Variable.jsx │ │ ├── base.html │ │ └── variable.html └── helpers.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | build/* 3 | **/*.html 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.npmignore -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.nycrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/README.md -------------------------------------------------------------------------------- /docs/JSX_RENDER_ENGINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/docs/JSX_RENDER_ENGINE.md -------------------------------------------------------------------------------- /docs/UPGRADE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/docs/UPGRADE_NOTES.md -------------------------------------------------------------------------------- /examples/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/.babelrc -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/build.js -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/scripts/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/scripts/loader.js -------------------------------------------------------------------------------- /examples/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/src/index.html -------------------------------------------------------------------------------- /examples/templates/Entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/templates/Entry.jsx -------------------------------------------------------------------------------- /examples/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/templates/base.html -------------------------------------------------------------------------------- /examples/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/webpack.config.js -------------------------------------------------------------------------------- /examples/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/examples/yarn.lock -------------------------------------------------------------------------------- /interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/interop.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/index.js -------------------------------------------------------------------------------- /src/integration-preact.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/integration-preact.spec.js -------------------------------------------------------------------------------- /src/integration-react-router.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/integration-react-router.spec.js -------------------------------------------------------------------------------- /src/integration-react.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/integration-react.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/constants.js -------------------------------------------------------------------------------- /src/jsx-render-engine/core/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/core/engine.js -------------------------------------------------------------------------------- /src/jsx-render-engine/core/engine.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/core/engine.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/core/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/core/options.js -------------------------------------------------------------------------------- /src/jsx-render-engine/core/processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/core/processor.js -------------------------------------------------------------------------------- /src/jsx-render-engine/core/processor.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/core/processor.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/core/registerExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/core/registerExtensions.js -------------------------------------------------------------------------------- /src/jsx-render-engine/core/registerExtensions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/core/registerExtensions.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/debug.js -------------------------------------------------------------------------------- /src/jsx-render-engine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/index.js -------------------------------------------------------------------------------- /src/jsx-render-engine/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/index.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/naive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/naive.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/naive.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/naive.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/preact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/preact.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react-router/Provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react-router/Provider.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react-router/getDefaultPropsWithLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react-router/getDefaultPropsWithLocation.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react-router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react-router/index.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react-router/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react-router/index.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react-router/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react-router/v3.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react-router/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react-router/v4.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react/InitialState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react/InitialState.jsx -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react/index.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react/index.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react/reactTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react/reactTemplates.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react/reactTemplates.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react/reactTemplates.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react/withInitialProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react/withInitialProps.js -------------------------------------------------------------------------------- /src/jsx-render-engine/strategy/react/withInitialProps.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/strategy/react/withInitialProps.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/addFileToCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/addFileToCollection.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/applyBaseFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/applyBaseFile.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/applyFileRenames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/applyFileRenames.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/applyTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/applyTemplate.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/getDefaultProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/getDefaultProps.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/prepareProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/prepareProps.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/preserveRawContents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/preserveRawContents.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/preserveRawContents.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/preserveRawContents.spec.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/readTemplateFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/readTemplateFile.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/registerExtensionToIgnore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/registerExtensionToIgnore.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/registerExtensionWithTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/registerExtensionWithTransformer.js -------------------------------------------------------------------------------- /src/jsx-render-engine/utils/removeFileFromCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/jsx-render-engine/utils/removeFileFromCollection.js -------------------------------------------------------------------------------- /src/lib/backwardCompat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/lib/backwardCompat.js -------------------------------------------------------------------------------- /src/lib/backwardCompat.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/lib/backwardCompat.spec.js -------------------------------------------------------------------------------- /src/lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/lib/core.js -------------------------------------------------------------------------------- /src/lib/createRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/lib/createRoutes.js -------------------------------------------------------------------------------- /src/lib/createRoutes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/lib/createRoutes.spec.js -------------------------------------------------------------------------------- /src/withInitialProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/src/withInitialProps.js -------------------------------------------------------------------------------- /tests/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/constants.js -------------------------------------------------------------------------------- /tests/fixtures/others/base-alt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/others/base-alt.html -------------------------------------------------------------------------------- /tests/fixtures/outputs/baseFileDefault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/outputs/baseFileDefault.html -------------------------------------------------------------------------------- /tests/fixtures/outputs/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/outputs/default.html -------------------------------------------------------------------------------- /tests/fixtures/outputs/defaultCustomKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/outputs/defaultCustomKey.html -------------------------------------------------------------------------------- /tests/fixtures/outputs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/outputs/index.js -------------------------------------------------------------------------------- /tests/fixtures/outputs/other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/outputs/other.html -------------------------------------------------------------------------------- /tests/fixtures/outputs/subdir/structure.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/outputs/variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/outputs/variable.html -------------------------------------------------------------------------------- /tests/fixtures/src/baseFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/src/baseFile.md -------------------------------------------------------------------------------- /tests/fixtures/src/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/src/default.md -------------------------------------------------------------------------------- /tests/fixtures/src/preact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/src/preact.md -------------------------------------------------------------------------------- /tests/fixtures/src/subdir/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/src/subdir/structure.md -------------------------------------------------------------------------------- /tests/fixtures/src/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/src/template.md -------------------------------------------------------------------------------- /tests/fixtures/src/variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/src/variable.md -------------------------------------------------------------------------------- /tests/fixtures/templates/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/App.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/AppDefault.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/AppDefault.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/AppRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/AppRoutes.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/CustomKey.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/CustomKey.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/Default.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/Default.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/Functional.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/Functional.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/Other.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/Other.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/Preact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/Preact.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/Variable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/Variable.jsx -------------------------------------------------------------------------------- /tests/fixtures/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/base.html -------------------------------------------------------------------------------- /tests/fixtures/templates/variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/fixtures/templates/variable.html -------------------------------------------------------------------------------- /tests/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/tests/helpers.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeojz/metalsmith-react-templates/HEAD/yarn.lock --------------------------------------------------------------------------------