Repository: MoOx/phenomic Branch: master Commit: cb8e94092073 Files: 560 Total size: 1.0 MB Directory structure: gitextract_mjidpdl9/ ├── .circleci/ │ └── config.yml ├── .editorconfig ├── .flowconfig ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appveyor.yml ├── babel-jest.upward.js ├── babel.config.js ├── examples/ │ ├── .eslintrc │ ├── react-app-blog/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── README.md │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.js.snap │ │ │ └── index.js │ │ ├── content/ │ │ │ ├── pages/ │ │ │ │ ├── about.md │ │ │ │ └── index.md │ │ │ └── posts/ │ │ │ ├── draft-post.md │ │ │ ├── fifth-post.md │ │ │ ├── first-post.md │ │ │ ├── fourth-post.md │ │ │ ├── second-post.md │ │ │ └── third-post.md │ │ ├── highlights-theme.css │ │ ├── package.json │ │ ├── public/ │ │ │ └── robots.txt │ │ └── src/ │ │ ├── ActivityIndicator.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── LatestPosts.js │ │ ├── Layout.js │ │ ├── Page.js │ │ ├── PageBlog.js │ │ ├── PageBlogPost.js │ │ ├── PageError.js │ │ ├── PageRepositories.js │ │ ├── PostLayoutDefault.js │ │ └── PostLayoutNoHero.js │ ├── react-app-getting-started/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── README.md │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.js.snap │ │ │ └── index.js │ │ ├── content/ │ │ │ └── posts/ │ │ │ ├── fifth-post.md │ │ │ ├── first-post.md │ │ │ ├── fourth-post.md │ │ │ ├── second-post.md │ │ │ └── third-post.md │ │ ├── package.json │ │ └── public/ │ │ └── robots.txt │ ├── react-app-markdown-with-custom-components/ │ │ ├── App.js │ │ ├── README.md │ │ ├── __tests__/ │ │ │ └── index.js │ │ ├── content/ │ │ │ └── index.md │ │ └── package.json │ ├── react-app-minimal-hello-world/ │ │ ├── App.js │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.js.snap │ │ │ └── index.js │ │ └── package.json │ ├── react-app-styles-with-aphrodite/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ └── package.json │ ├── react-app-styles-with-css/ │ │ ├── App.js │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.js.snap │ │ │ └── index.js │ │ ├── package.json │ │ └── styles.css │ ├── react-app-styles-with-css-inlined-in-head/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ ├── package.json │ │ └── styles.css │ ├── react-app-styles-with-emotion/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ └── package.json │ ├── react-app-styles-with-glamor/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ └── package.json │ ├── react-app-styles-with-glamorous/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ └── package.json │ ├── react-app-styles-with-radium/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ └── package.json │ ├── react-app-styles-with-styled-components/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ └── package.json │ ├── react-app-with-basename/ │ │ ├── App.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ ├── content/ │ │ │ └── test.md │ │ └── package.json │ ├── react-native-web-app/ │ │ ├── App.js │ │ ├── Html.js │ │ ├── __tests__/ │ │ │ └── index.js │ │ └── package.json │ └── reason-react-app/ │ ├── App.js │ ├── README.md │ ├── __tests__/ │ │ ├── __snapshots__/ │ │ │ └── index.js.snap │ │ └── index.js │ ├── bsconfig.json │ ├── content/ │ │ └── posts/ │ │ ├── fifth-post.md │ │ ├── first-post.md │ │ ├── fourth-post.md │ │ ├── second-post.md │ │ └── third-post.md │ ├── package.json │ └── src/ │ ├── Helpers.re │ ├── Types.re │ └── components/ │ ├── ErrorPage.re │ ├── Home.re │ └── Post.re ├── flow-typed/ │ ├── .eslintrc │ ├── handmade/ │ │ ├── cross-fetch_v2.x.x.js │ │ ├── deepmerge.js │ │ ├── fb-watchman.js │ │ ├── find-cache-dir.js │ │ ├── fs-extra.js │ │ ├── fs-promise.js │ │ ├── globby.js │ │ ├── gray-matter.js │ │ ├── js-beautify.js │ │ ├── jsx-test-helpers-v1.x.x.js │ │ ├── loader-utils.js │ │ ├── log-symbols.js │ │ ├── lru-memoize.js │ │ ├── mkdirp.js │ │ ├── multili.js │ │ ├── node-object-hash.js │ │ ├── ora.js │ │ ├── pify.js │ │ ├── react-helmet_v5.x.x.js │ │ ├── react-router-scroll.js │ │ ├── remark.js │ │ ├── sane.js │ │ ├── semver.js │ │ ├── simple-json-fetch.js │ │ ├── strip-markdown.js │ │ ├── striptags.js │ │ ├── url-join.js │ │ ├── webpack-dev-middleware.js │ │ ├── webpack-hot-middleware.js │ │ ├── webpack-sources.js │ │ ├── webpack.js │ │ └── webpack_v4.x.x.js │ ├── npm/ │ │ ├── aphrodite_vx.x.x.js │ │ ├── asciidoctor.js_vx.x.x.js │ │ ├── chalk_v1.x.x.js │ │ ├── classnames_v2.x.x.js │ │ ├── cosmiconfig_vx.x.x.js │ │ ├── cross-env_vx.x.x.js │ │ ├── cross-spawn_vx.x.x.js │ │ ├── debug_v2.x.x.js │ │ ├── deep-assign_vx.x.x.js │ │ ├── deepmerge_v1.x.x.js │ │ ├── dotenv-expand_vx.x.x.js │ │ ├── dotenv_vx.x.x.js │ │ ├── emotion-server_vx.x.x.js │ │ ├── emotion_vx.x.x.js │ │ ├── eslint-config-i-am-meticulous_vx.x.x.js │ │ ├── eslint-import-resolver-webpack_vx.x.x.js │ │ ├── eslint-plugin-flowtype_vx.x.x.js │ │ ├── eslint-plugin-import_vx.x.x.js │ │ ├── eslint-plugin-react-native_vx.x.x.js │ │ ├── eslint-plugin-react_vx.x.x.js │ │ ├── eslint_vx.x.x.js │ │ ├── express_v4.x.x.js │ │ ├── flow-bin_v0.x.x.js │ │ ├── get-port_vx.x.x.js │ │ ├── git-exec-and-restage_vx.x.x.js │ │ ├── glamor_vx.x.x.js │ │ ├── glamorous_vx.x.x.js │ │ ├── globby_vx.x.x.js │ │ ├── gray-matter_vx.x.x.js │ │ ├── hast-util-sanitize_vx.x.x.js │ │ ├── history_vx.x.x.js │ │ ├── hoist-non-react-statics_v2.x.x.js │ │ ├── husky_vx.x.x.js │ │ ├── jest_v21.x.x.js │ │ ├── jest_v22.x.x.js │ │ ├── lerna_vx.x.x.js │ │ ├── lint-staged_vx.x.x.js │ │ ├── lodash.deburr_vx.x.x.js │ │ ├── lodash.flatten_vx.x.x.js │ │ ├── lodash.kebabcase_vx.x.x.js │ │ ├── npm-run-all_vx.x.x.js │ │ ├── p-map_vx.x.x.js │ │ ├── prettier_v1.x.x.js │ │ ├── prop-types_v15.x.x.js │ │ ├── radium_vx.x.x.js │ │ ├── react-dev-utils_vx.x.x.js │ │ ├── react-emotion_vx.x.x.js │ │ ├── react-router_vx.x.x.js │ │ ├── react-topbar-progress-indicator_vx.x.x.js │ │ ├── rehype-autolink-headings_vx.x.x.js │ │ ├── rehype-highlight_vx.x.x.js │ │ ├── rehype-parse_vx.x.x.js │ │ ├── rehype-raw_vx.x.x.js │ │ ├── rehype-react_vx.x.x.js │ │ ├── rehype-slug_vx.x.x.js │ │ ├── rehype-stringify_vx.x.x.js │ │ ├── remark-highlights_vx.x.x.js │ │ ├── remark-parse_vx.x.x.js │ │ ├── remark-rehype_vx.x.x.js │ │ ├── remark-toc_vx.x.x.js │ │ ├── rimraf_v2.x.x.js │ │ ├── rss_vx.x.x.js │ │ ├── socket.io-client_vx.x.x.js │ │ ├── socket.io_v1.x.x.js │ │ ├── styled-components_v2.x.x.js │ │ ├── supertest_vx.x.x.js │ │ ├── trash-cli_vx.x.x.js │ │ ├── unified_v6.x.x.js │ │ └── yargs_v7.x.x.js │ └── phenomic.js ├── jest-setup.js ├── lerna.json ├── logo/ │ ├── .gitignore │ └── phenomic.sketch ├── netlify.toml ├── package.json ├── packages/ │ ├── api-client/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── url-test.js.snap │ │ │ └── url-test.js │ │ ├── fetch.js │ │ ├── index.js │ │ ├── phenomicApiClient.re │ │ ├── query.js │ │ └── url.js │ ├── babel-preset/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── package.json │ │ └── src/ │ │ └── index.js │ ├── bs-platform/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── package.json │ │ ├── src/ │ │ │ └── .gitkeep-because-i-am-too-lazy-too-make-lerna-commands-smarter │ │ └── tweak │ ├── cli/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ └── check-engine.js │ │ ├── bin.js │ │ ├── check-engine.js │ │ └── commands.js │ ├── core/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── cli.md │ │ │ ├── configuration.md │ │ │ ├── faq.md │ │ │ ├── how-phenomic-works.md │ │ │ └── writing-plugins.md │ │ ├── package.json │ │ └── src/ │ │ ├── BsFindCacheDir.re │ │ ├── Utils.re │ │ ├── api/ │ │ │ ├── __tests__/ │ │ │ │ └── index.js │ │ │ ├── helpers.js │ │ │ └── index.js │ │ ├── commands/ │ │ │ ├── build.js │ │ │ └── start.js │ │ ├── configuration/ │ │ │ ├── __tests__/ │ │ │ │ ├── __snapshots__/ │ │ │ │ │ ├── flattenConfiguration.js.snap │ │ │ │ │ └── normalize-base-url.test.js.snap │ │ │ │ ├── flattenConfiguration.js │ │ │ │ └── normalize-base-url.test.js │ │ │ ├── flattenConfiguration.js │ │ │ ├── get-client-environment.js │ │ │ └── normalize-base-url.js │ │ ├── db/ │ │ │ ├── __tests__/ │ │ │ │ ├── __fixtures__/ │ │ │ │ │ └── index.js │ │ │ │ ├── __snapshots__/ │ │ │ │ │ └── index-test.js.snap │ │ │ │ └── index-test.js │ │ │ └── index.js │ │ ├── defaultConfig.js │ │ ├── index.js │ │ ├── logger/ │ │ │ ├── __tests__/ │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── utils/ │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── resolveAll-test.js.snap │ │ │ ├── error-formatter-test.js │ │ │ └── resolveAll-test.js │ │ ├── error-formatter.js │ │ ├── getPath.js │ │ ├── log.js │ │ ├── resolveAll.js │ │ └── writeFile.js │ ├── helpers-transform/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ ├── README.md │ │ │ ├── extractMetaFromBodyNode.md │ │ │ └── unifiedProcessor.md │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ ├── extractMetaFromBodyNode.js.snap │ │ │ │ └── unifiedProcessor.js.snap │ │ │ ├── extractMetaFromBodyNode.js │ │ │ └── unifiedProcessor.js │ │ ├── extractMetaFromBodyNode.js │ │ └── unifiedProcessor.js │ ├── plugin-api-related-content/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ └── index.js │ ├── plugin-bundler-webpack/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── WebpackConfigValidator.js │ │ ├── WebpackGetConfig.js │ │ ├── WebpackServerConfigModifier.js │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.js.snap │ │ │ └── index.js │ │ ├── index.js │ │ ├── webpack-promise.js │ │ └── webpack.config.js │ ├── plugin-collector-files/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ ├── __fixtures__/ │ │ │ │ ├── authors/ │ │ │ │ │ ├── bloodyowl.json │ │ │ │ │ └── moox.json │ │ │ │ ├── news/ │ │ │ │ │ └── 2017/ │ │ │ │ │ └── 06/ │ │ │ │ │ └── introducing-1.0.0-alpha.json │ │ │ │ ├── showcase/ │ │ │ │ │ ├── entry/ │ │ │ │ │ │ ├── acrowithbrian.com.json │ │ │ │ │ │ ├── anthonydugois.com__polynomic.json │ │ │ │ │ │ └── ced.photo.json │ │ │ │ │ └── submit.json │ │ │ │ └── showcaseTags/ │ │ │ │ ├── event.json │ │ │ │ └── open-source.json │ │ │ ├── __snapshots__/ │ │ │ │ └── collect.js.snap │ │ │ ├── collect.js │ │ │ └── index.js │ │ ├── index.js │ │ └── watch.js │ ├── plugin-public-assets/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ └── index.js │ ├── plugin-renderer-react/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ ├── resolveURLs-list.js.snap │ │ │ │ └── resolveURLs.js.snap │ │ │ ├── resolveURLs-list.js │ │ │ └── resolveURLs.js │ │ ├── bodyRenderer.re │ │ ├── client.js │ │ ├── components/ │ │ │ ├── BodyRenderer.js │ │ │ ├── HTML.js │ │ │ ├── Link.hash.js │ │ │ ├── Link.js │ │ │ ├── Provider.js │ │ │ ├── __tests__/ │ │ │ │ ├── BodyRenderer.js │ │ │ │ ├── Html.js │ │ │ │ ├── Link.js │ │ │ │ ├── __snapshots__/ │ │ │ │ │ ├── BodyRenderer.js.snap │ │ │ │ │ ├── Html.js.snap │ │ │ │ │ ├── Link.js.snap │ │ │ │ │ └── textRenderer.js.snap │ │ │ │ └── textRenderer.js │ │ │ └── textRenderer.js │ │ ├── createApp.js │ │ ├── deprecated-createContainer.js │ │ ├── index.js │ │ ├── link.re │ │ ├── phenomicRendererReactClient.re │ │ ├── renderHTML.js │ │ ├── resolveURLs.js │ │ ├── resolveUrlsFromPhenomicApi.js │ │ ├── server/ │ │ │ ├── __tests__/ │ │ │ │ ├── __snapshots__/ │ │ │ │ │ └── getRoutes.js.snap │ │ │ │ └── getRoutes.js │ │ │ ├── dev-server.js │ │ │ ├── getRoutes.js │ │ │ └── static.js │ │ ├── shared/ │ │ │ ├── QueryString.js │ │ │ ├── __tests__/ │ │ │ │ ├── QueryString-test.js │ │ │ │ ├── __snapshots__/ │ │ │ │ │ ├── QueryString-test.js.snap │ │ │ │ │ └── mapValues-test.js.snap │ │ │ │ └── mapValues-test.js │ │ │ ├── mapValues.js │ │ │ ├── performQuery.js │ │ │ └── store/ │ │ │ ├── __tests__/ │ │ │ │ ├── __snapshots__/ │ │ │ │ │ └── index-test.js.snap │ │ │ │ └── index-test.js │ │ │ └── index.js │ │ ├── utils.js │ │ ├── withInitialProps.js │ │ └── withPhenomicApi.js │ ├── plugin-rss-feed/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ └── index.js │ ├── plugin-sitemap/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── package.json │ │ └── src/ │ │ └── index.js │ ├── plugin-transform-asciidoc/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.js.snap │ │ │ └── index.js │ │ ├── default-options.js │ │ └── index.js │ ├── plugin-transform-json/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.js.snap │ │ │ └── index.js │ │ └── index.js │ ├── plugin-transform-markdown/ │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── docs/ │ │ │ └── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.js.snap │ │ │ └── index.js │ │ ├── default-options.js │ │ └── index.js │ └── preset-react-app/ │ ├── README.md │ ├── bsconfig.json │ ├── docs/ │ │ ├── README.md │ │ └── getting-started/ │ │ ├── 01.md │ │ ├── 02.md │ │ ├── 03.md │ │ ├── 04.md │ │ ├── 05.md │ │ ├── 06.md │ │ ├── 07.md │ │ ├── 08.md │ │ ├── 09.md │ │ ├── 10.md │ │ └── README.md │ ├── package.json │ └── src/ │ ├── client.js │ ├── index.js │ └── phenomicPresetReactApp.re ├── scripts/ │ ├── examples.js │ └── utils.js └── website/ ├── .gitignore ├── App.js ├── Html.js ├── __tests__/ │ └── index.js ├── components/ │ ├── ActivityIndicator.js │ ├── BackgroundGradient.web.js │ ├── BlogItem.js │ ├── BlogList.js │ ├── BlogListItem.js │ ├── BodyContainer.js │ ├── BodySmallContainer.js │ ├── Browser.js │ ├── DocSearch.js │ ├── Editor.js │ ├── Flex.js │ ├── Footer.js │ ├── FooterNavBar.js │ ├── Header.js │ ├── HeaderNavBar.js │ ├── Home.js │ ├── HomeCodeExample.js │ ├── Link.web.js │ ├── MarkdownGenerated.js │ ├── MarkdownHeading.js │ ├── PackageListItem.js │ ├── Page.js │ ├── PageDoc.js │ ├── PageError.js │ ├── PagePackageList.js │ ├── PageShowcase.js │ ├── PhenomicLogo.js │ ├── Plugins.js │ ├── ShowcaseList.js │ ├── Spacer.js │ ├── Spinner.js │ ├── Tutorials.js │ ├── Wrapper.js │ └── react-stylable/ │ ├── focusable.js │ ├── hoverable.js │ ├── index.js │ ├── touchable-mouse.js │ └── touchable.js ├── content/ │ ├── blog/ │ │ ├── 2017-06-02-introducing-1.0.0-alpha.md │ │ ├── 2017-06-10-v1.0.0-alpha.3.md │ │ ├── 2017-07-11-v1.0.0-alpha.4.md │ │ ├── 2017-08-09-v1.0.0-alpha.5.md │ │ ├── 2017-09-08-v1.0.0-alpha.6.md │ │ ├── 2017-09-15-v1.0.0-alpha.7.md │ │ ├── 2017-09-16-v1.0.0-alpha.8.md │ │ ├── 2017-09-27-v1.0.0-alpha.10.md │ │ ├── 2017-09-30-v1.0.0-alpha.11.md │ │ ├── 2017-10-11-v1.0.0-alpha.12.md │ │ ├── 2017-10-19-v1.0.0-alpha.13.md │ │ ├── 2017-12-04-v1.0.0-alpha.14.md │ │ ├── 2017-12-04-v1.0.0-alpha.15.md │ │ ├── 2017-12-06-v1.0.0-alpha.16.md │ │ ├── 2017-12-06-v1.0.0-alpha.17.md │ │ ├── 2017-12-20-v1.0.0-alpha.18.md │ │ ├── 2018-01-11-v1.0.0-alpha.19.md │ │ ├── 2018-01-24-v1.0.0-alpha.20.md │ │ ├── 2018-03-08-v1.0.0-beta.0.md │ │ ├── 2018-03-30-v1.0.0-beta.1.md │ │ ├── 2018-04-07-v1.0.0-beta.2.md │ │ ├── 2018-05-22-v1.0.0-beta.3.md │ │ ├── 2018-10-27-v1.0.0-beta.4.md │ │ ├── 2018-11-26-v1.0.0-beta.5.md │ │ ├── 2018-12-08-v1.0.0-beta.6.md │ │ ├── 2018-12-09-v1.0.0-beta.7.md │ │ ├── 2018-12-20-v1.0.0-beta.8.md │ │ ├── 2019-01-18-v10.0-beta.9.md │ │ ├── 2019-03-15-v1.0.0-beta.10.md │ │ ├── 2019-03-24-v1.0.0-beta.11.md │ │ └── 2019-05-28-v1.0.0 │ └── showcase/ │ ├── entry/ │ │ ├── anthonydugois.com__polynomic.md │ │ ├── ced.photo.md │ │ ├── cpp.daynhauhoc.com.md │ │ ├── cssnano.co.md │ │ ├── duxxie.nl.md │ │ ├── haywirez.com.md │ │ ├── istanbul.js.org.md │ │ ├── kevin940726.github.io.md │ │ ├── khoanguyen.me.md │ │ ├── meetfranz.com.md │ │ ├── nhakhoaphuocbinh.com.md │ │ ├── postcss.org.md │ │ ├── putaindecode.io.md │ │ ├── slashgear.github.io.md │ │ ├── stylelint.io.md │ │ ├── www.acrowithbrian.com.md │ │ ├── www.asimkt.com.md │ │ ├── www.boscnegre-vacances.com.md │ │ └── www.codepreneur.io.md │ └── submit.md ├── defaults.css ├── highlights-theme.css ├── modules/ │ └── url-to-slug.js ├── package.json ├── phenomic.config.js ├── public/ │ ├── .nojekyll │ ├── CNAME │ ├── browserconfig.xml │ └── site.webmanifest ├── scripts/ │ ├── deploy.sh │ ├── releases-as-markdown.js │ └── showcase-screenshots.js └── webpack.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .circleci/config.yml ================================================ version: 2 jobs: test: docker: - image: circleci/node:8 steps: - checkout - restore_cache: key: dependency-cache - restore_cache: key: website-cache - run: name: install deps command: yarn - run: name: tests command: | echo 'export DEBUG=phenomic:*' >> $BASH_ENV yarn test - save_cache: key: dependency-cache paths: - ~/.cache/yarn - ./node_modules - save_cache: key: website-cache paths: - website/.screenshots - website/public/showcase/entry workflows: version: 2 test: jobs: - test ================================================ FILE: .editorconfig ================================================ # editorconfig.org root = true [*] end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true indent_style = space indent_size = 2 [*.md] # Allow
from Markdown trim_trailing_whitespace = false ================================================ FILE: .flowconfig ================================================ [version] ^0.87.0 [ignore] .*/__tests__/_output/.* .*/dist/.* # for CI .*/watchman/.* /coverage/.* /benchmarks/.*/dist/.* /benchmarks/.*/lib/.* /examples/.*/dist/.* /examples/.*/lib/.* /packages/.*/dist/.* /packages/.*/lib/.* ; please remove me when you have time to kill /website/.* # flow & js generated by reasonml doesn't play nice /examples/reason-react-app/.* ; broken json .*/node_modules/config-chain/test/.* [options] esproposal.class_instance_fields=enable esproposal.class_static_fields=enable # for Windows compat with json files module.file_ext=.web.js module.file_ext=.js module.file_ext=.json # packages/* module.name_mapper='^@phenomic\/\([a-z0-9-]+\)\/lib\/\(.*\)$' -> '/packages/\1/src/\2' module.name_mapper='^@phenomic\/\([a-z0-9-]+\)\/\(.*\)$' -> '/packages/\1/\2' module.name_mapper='^@phenomic\/\([a-z0-9-]+\)$' -> '/packages/\1/src' # fixup some node_modules to get proper flow types module.name_mapper='^react-native-web$' -> 'react-native-web/src' ================================================ FILE: .github/FUNDING.yml ================================================ open_collective: phenomic ko_fi: moox__ custom: https://www.paypal.me/MoOx ================================================ FILE: .gitignore ================================================ *.log # macOS crap .DS_Store # Node.js / npm node_modules # we rely on yarn.lock package-lock.json # code coverage coverage # build **/lib/**/*.js **/lib/bs/**/* **/lib/ocaml/**/* **/dist # tests results **/__tests__/_output* # website **/website/**/*.mov **/website/**/*.pxm **/website/public/showcases/entry/* **/website/svgs/*.js # reason stuff .merlin .bsb.lock *.bs.js ================================================ FILE: .travis.yml ================================================ language: node_js node_js: 8 env: global: - DEBUG: phenomic:* before_install: # Install Yarn - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH # Install Watchman dependency - git clone --depth=1 --branch=v4.7.0 https://github.com/facebook/watchman.git - pushd watchman && ./autogen.sh && ./configure --without-python && make && sudo make install && popd cache: yarn: true directories: - node_modules - website/.screenshots - website/public/showcase/entry script: - yarn run test-without-lint ================================================ FILE: .vscode/settings.json ================================================ { "javascript.validate.enable": false } ================================================ FILE: CHANGELOG.md ================================================ # For pre-releases notes [see GitHub releases](https://github.com/phenomic/phenomic/releases) # [0.x releases notes](https://github.com/phenomic/phenomic/blob/0.x/CHANGELOG.md) ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Code of Conduct ## 1. Purpose A primary goal of Phenomic is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status, and religion (or lack thereof). This code of conduct outlines our expectations for all those who participate in our community, as well as the consequences for unacceptable behavior. We invite all those who participate in Phenomic to help us create safe and positive experiences for everyone. ## 2. Open Source Citizenship A supplemental goal of this Code of Conduct is to increase open source citizenship by encouraging participants to recognize and strengthen the relationships between our actions and their effects on our community. Communities mirror the societies in which they exist and positive action is essential to counteract the many forms of inequality and abuses of power that exist in society. If you see someone who is making an extra effort to ensure our community is welcoming, friendly, and encourages all participants to contribute to the fullest extent, we want to know. ## 3. Expected Behavior The following behaviors are expected and requested of all community members: - Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this community. - Exercise consideration and respect in your speech and actions. - Attempt collaboration before conflict. - Refrain from demeaning, discriminatory, or harassing behavior and speech. - Be mindful of your surroundings and of your fellow participants. Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential. - Remember that community event venues may be shared with members of the public; please be respectful to all patrons of these locations. ## 4. Unacceptable Behavior The following behaviors are considered harassment and are unacceptable within our community: - Violence, threats of violence or violent language directed against another person. - Sexist, racist, homophobic, transphobic, ableist or otherwise discriminatory jokes and language. - Posting or displaying sexually explicit or violent material. - Posting or threatening to post other people’s personally identifying information ("doxing"). - Personal insults, particularly those related to gender, sexual orientation, race, religion, or disability. - Inappropriate photography or recording. - Inappropriate physical contact. You should have someone’s consent before touching them. - Unwelcome sexual attention. This includes, sexualized comments or jokes; inappropriate touching, groping, and unwelcomed sexual advances. - Deliberate intimidation, stalking or following (online or in person). - Advocating for, or encouraging, any of the above behavior. - Sustained disruption of community events, including talks and presentations. ## 5. Consequences of Unacceptable Behavior Unacceptable behavior from any community member, including sponsors and those with decision-making authority, will not be tolerated. Anyone asked to stop unacceptable behavior is expected to comply immediately. If a community member engages in unacceptable behavior, the community organizers may take any action they deem appropriate, up to and including a temporary ban or permanent expulsion from the community without warning (and without refund in the case of a paid event). ## 6. Reporting Guidelines If you are subject to or witness unacceptable behavior, or have any other concerns, please notify a community organizer as soon as possible. contact@phenomic.io. Additionally, community organizers are available to help community members engage with local law enforcement or to otherwise help those experiencing unacceptable behavior feel safe. In the context of in-person events, organizers will also provide escorts as desired by the person experiencing distress. ## 7. Addressing Grievances If you feel you have been falsely or unfairly accused of violating this Code of Conduct, you should notify Phenomic with a concise description of your grievance. Your grievance will be handled in accordance with our existing governing policies. ## 8. Scope We expect all community participants (contributors, paid or otherwise; sponsors; and other guests) to abide by this Code of Conduct in all community venues–online and in-person–as well as in all one-on-one communications pertaining to community business. This code of conduct and its related procedures also applies to unacceptable behavior occurring outside the scope of community activities when such behavior has the potential to adversely affect the safety and well-being of community members. ## 9. Contact info contact@phenomic.io ## 10. License and attribution This Code of Conduct is distributed under a [Creative Commons Attribution-ShareAlike license](http://creativecommons.org/licenses/by-sa/3.0/). Portions of text derived from the [Django Code of Conduct](https://www.djangoproject.com/conduct/) and the [Geek Feminism Anti-Harassment Policy](http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy). Retrieved on November 22, 2016 from [http://citizencodeofconduct.org/](http://citizencodeofconduct.org/) ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to Phenomic > ⚠️ wip From opening a bug report to creating a pull request: every contribution is appreciated and welcome. This document is here to answer most questions when it comes to contribute to this project. If you have any questions not answered by this document, [contact us on our chat](https://gitter.im/MoOx/phenomic) or [open an issue](https://github.com/phenomic/phenomic/issues/new) --- ## [Code of Conduct](CODE_OF_CONDUCT.md) Phenomic has adopted a Code of Conduct that we expect project participants to adhere to. Please read [the full text](CODE_OF_CONDUCT.md) so that you can understand what actions will and will not be tolerated. --- ## Financial contributions We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/phenomic). Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed. ➡️ [opencollective.com/phenomic](https://opencollective.com/phenomic) ### Credits #### Contributors Thank you to all the people who have already contributed to phenomic! #### Backers Thank you to all our backers! [[Become a backer](https://opencollective.com/phenomic#backer)] #### Sponsors Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/phenomic#sponsor)) --- ### Workflow and Pull Requests The core team will be monitoring for pull requests and reviewing changes. _Before_ submitting a pull request, please make sure the following is done… 1. Fork the repo and create your branch from `master`. A guide on how to fork a repository: https://help.github.com/articles/fork-a-repo/ Open your terminal (e.g. Terminal, Git Bash or Git Shell) and type: ```sh git clone https://github.com//phenomic cd phenomic git checkout -b my_branch ``` Note: Replace `` with your GitHub username 2. Phenomic uses [Yarn](https://yarnpkg.com/) for running development scripts. If you haven't already done so, please [install yarn](https://yarnpkg.com/en/docs/install). To check your version of Yarn and ensure it's installed you can type: ```sh yarn --version ``` ⚠️ **We currently require yarn >= v1.0.0** 3. Run `yarn`. This will install all dependencies and prepare the repository to be ready for serious shit. ```sh yarn ``` 4. If you've added code that should be tested, add tests. 5. If you've added/changed APIs, update the documentation accordingly. 6. Ensure the entire test suite passes via `yarn test`. #### Additional Workflow for any changes made to website or docs If you are making changes to the website or documentation, test the `website` folder and run the server to check if your changes are being displayed accurately. You can run a development server to check if the changes you made are being displayed accurately by running `yarn website:start`. You can modify `website/*` code and get real times update in your browser. **Keep in mind that whenever you modify Phenomic core/plugins you might need to restart the dev server.** If you are doing change to Phenomic using the website as a playground, you may need to transpile sources. See below for more informations. ## How to try a development build of Phenomic in another project ### Transpiling sources Phenomic is written with ES2015+ and is using [babel](http://babeljs.io) for transpilation. In order to have up to date code for real world usage, you need to start a watcher from the root of the project ```console yarn watch ``` This will update transpilated files as soon as you modify one. ### Use a local Phenomic version your own project From Phenomic git repo ```console yarn links ``` This should create local links for each packages. Then, in your project: ```console yarn link @phenomic/core @phenomic/preset-react-app ... ``` **You should probably add all others direct `@phenomic/*` deps from your `package.json` if necessary.** Then run your project via `yarn start`, and don't forget to restart dev server if necessary (if you change the code of Phenomic itself). --- ## Bugs ### Where to Find Known Issues We are using [GitHub Issues](https://github.com/phenomic/phenomic/issues) for our public bugs. We will keep a close eye on this and try to make it clear when we have a work in progress. **Before filing a new issue, try to make sure your problem doesn't already exist.** ### Reporting New Issues The best way to get your bug fixed is to provide a reduced test case. Please provide a public repository with a runnable example. Then feel free to [open an issue](https://github.com/phenomic/phenomic/issues/new). #### Security Bugs If you find a security issue, please first contact us directly before opening a public issue. --- ## Releasing Update necessary `bsconfig.json` (eg: `packages/reason/bsconfig.json`) version number and stage the file in git (so release script gets it). ``` yarn release ``` The command will guide you. Once it's done, go to https://github.com/phenomic/phenomic/releases. Click on the new created tag and `Edit tag` to create release notes. The way to create notes is easy. Just go to https://github.com/phenomic/phenomic/commits/master and sort interesting commits (since last release) in the template below that you will use as notes: ``` # 🎉 No breaking changes 🎉 or # 💥 Includes _Breaking changes_ Blah blah ## 💥 Breaking changes * [`@phenomic/PLUGIN_NAMEEEE`: AWESOME_MESSAGE](https://github.com/phenomic/phenomic/commit/HASSSSHHHHHHHHHHH), by @DOERRRRR, reported|requested by @REPORTERRRRR (in [#XXXXXXX](https://github.com/phenomic/phenomic/issues/XXXXXXX)) ## 🐛 Bugfixes ... ## 👍 Improvements ... ## 🔥 New plugins ... ## ✨ New features ... ## 🌟 New Examples ... ``` --- ## How to Get in Touch - Chat - [#phenomic](https://gitter.im/phenomic/phenomic) on Gitter. - Email - contact (at) phenomic (dot) io ## Code Conventions - [Prettier](https://prettier.io) is used to avoid bikeshedding on quotes or semicolons. - [Eslint](http://eslint.org) is used to help to keep the codebase clean, with a [strong config](https://github.com/MoOx/eslint-config-i-am-meticulous). - Prefer ES6 syntax when possible. - Use [Flow types](http://flowtype.org/). ## License By contributing to Phenomic, you agree that your contributions will be licensed under its MIT license. ================================================ FILE: LICENSE ================================================ The MIT License (MIT) Copyright (c) 2015 Maxime Thirouin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # DEPRECATED. Please use [Next.js](https://nextjs.org) instead [![Phenomic](https://raw.githubusercontent.com/phenomic/phenomic/master/logo/phenomic-cover-transparent.png)](https://phenomic.io) > Modular website compiler (React, Webpack, Reason and whatever you want) ✅ **Status** [![Travis CI Build status](https://img.shields.io/travis/phenomic/phenomic/master.svg?label=unix%2Ftravis-ci%20build)](https://travis-ci.org/phenomic/phenomic) [![circle Build status](https://img.shields.io/circleci/project/github/phenomic/phenomic/master.svg?label=unix%2Fcircle-ci%20build)](https://circleci.com/gh/phenomic/phenomic) [![Windows Build status](https://img.shields.io/appveyor/ci/MoOx/phenomic/master.svg?label=window%20build)](https://ci.appveyor.com/project/MoOx/phenomic/branch/master) [![Version](https://img.shields.io/npm/v/@phenomic/core.svg)](https://github.com/phenomic/phenomic/blob/master/CHANGELOG.md) 💬 **Want to discuss or ask a question?** [![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/phenomic) [![Gitter](https://badges.gitter.im/phenomic/phenomic.svg)](https://gitter.im/phenomic/phenomic) [![Follow Phenomic on Twitter](https://img.shields.io/twitter/follow/Phenomic_app.svg?style=social&logo=twitter&label=Follow+Phenomic_app)](http://twitter.com/Phenomic_app) 📦 **Git Mirrors** [GitHub](https://github.com/phenomic/phenomic) | [GitLab](https://gitlab.com/MoOx/phenomic) | [BitBucket](https://bitbucket.org/MoOx/phenomic) --- ## [Documentation](https://phenomic.io/en/packages/core/docs/) ## [Tutorials](https://phenomic.io/en/tutorials/) ## Examples There are plenty of [examples](https://github.com/phenomic/phenomic/tree/master/examples) available. Just take a look! --- ## [CONTRIBUTING](https://github.com/phenomic/phenomic/blob/master/CONTRIBUTING.md) ✨ Check out our [CONTRIBUTING](https://github.com/phenomic/phenomic/blob/master/CONTRIBUTING.md) guide to get started. - ⇄ Pull/Merge requests and ★ Stars are always welcome. - For bugs and feature requests, please [create an issue](https://github.com/phenomic/phenomic/issues/new). - Pull requests must be accompanied by passing automated tests. See [CONTRIBUTING](https://github.com/phenomic/phenomic/blob/master/CONTRIBUTING.md) for more information. - Donation is a way to contribute. [You can help us via our OpenCollective page](https://opencollective.com/phenomic). ### Contributors Thank you to all the people who have already contributed to phenomic! ### Backers Thank you to all our backers! [[Become a backer](https://opencollective.com/phenomic#backer)] ### Sponsors Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/phenomic#sponsor)) --- ## [CHANGELOG](CHANGELOG.md) ## [Code of Conduct](CODE_OF_CONDUCT.md) ## [LICENSE](LICENSE) ================================================ FILE: appveyor.yml ================================================ # http://www.appveyor.com/docs/appveyor-yml environment: matrix: - nodejs_version: '8' DEBUG: phenomic:* install: - ps: Install-Product node $env:nodejs_version x64 - node --version - yarn --version - yarn test_script: - yarn test-without-lint - yarn posttest cache: - "%LOCALAPPDATA%\\Yarn" - node_modules -> package.json - website/.screenshots -> website/content/showcase/entry - website/public/showcase/entry -> website/content/showcase/entry version: "{build}" build: off deploy: off matrix: fast_finish: true init: # debugging Appveyor build. More info: # https://www.appveyor.com/docs/how-to/rdp-to-build-worker/ - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) ================================================ FILE: babel-jest.upward.js ================================================ module.exports = require("babel-jest").createTransformer({ rootMode: "upward", }); ================================================ FILE: babel.config.js ================================================ module.exports = { presets: [ [ "@babel/preset-env", { targets: { node: "current", }, }, ], "@babel/preset-react", "@babel/preset-flow", ], plugins: [ "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-object-rest-spread", [ "@babel/plugin-transform-runtime", { helpers: true, regenerator: true, }, ], ], }; ================================================ FILE: examples/.eslintrc ================================================ { "rules": { "import/no-extraneous-dependencies": 0, "react/no-multi-comp": 0, "react/prop-types": 0, "react/jsx-no-bind": 0, "react/jsx-no-literals": 0, "react-native/no-inline-styles": 0 } } ================================================ FILE: examples/react-app-blog/App.js ================================================ // @flow import * as React from "react"; import { Router, Route, browserHistory } from "react-router"; import { createApp, renderApp } from "@phenomic/preset-react-app/lib/client"; import "./highlights-theme.css"; import Page from "./src/Page"; import PageBlog from "./src/PageBlog"; import PageBlogPost from "./src/PageBlogPost"; import PageRepositories from "./src/PageRepositories"; import PageError from "./src/PageError"; const routes = () => ( {/* for static hosting, we often need an explicit 404.html */} ); export default createApp(routes); if (module.hot) { module.hot.accept(() => renderApp(routes)); } ================================================ FILE: examples/react-app-blog/Html.js ================================================ // @flow import * as React from "react"; import Head from "react-helmet"; export default ({ App, render }: PhenomicHtmlPropsType) => { // if needed, you can know if you are in development or in static rendering // const isDev = process.env.PHENOMIC_ENV === "development" const { Main, State, Script, Style } = render(); const helmet = Head.renderStatic(); return ( // $FlowFixMe helmet is fine {helmet.meta.toComponent()} {helmet.title.toComponent()} {helmet.base.toComponent()}
, Script: () =>