Ryan Roemer
Ryan Roemer
@paulmarsicloud We're missing a `build` task for `examples/mdx` which I'm going to add (and to CI)
I've added the `build` task. I think we're otherwise ready for this PR with all the rest of the follow-on work ticketed.
@JustFly1984 -- Can you open up a minimal repository with a sample app that uses Immutable the way you'd like to with freactal so we have something easy and tangible...
@divmain -- Any last objections to applying flow to `freactal`? We'd ideally like to get this going soon-ish unless you have objections.
I have a WIP branch (https://github.com/FormidableLabs/spectacle/compare/feature/ssr) that just does SSR with: ```sh # Build CJS stuff (or `yarn build` for everything) $ yarn build-babel-cjs # Output SSR content to stdout...
**UPDATE**: Clean repo clone and install fixed this. When I run `pnpm run build:core` I'm getting ``` https://github.com/browserslist/browserslist#browsers-data-updating /Users/rye/scm/fmd/spectacle/node_modules/.pnpm/[email protected][email protected]/node_modules/webpack/lib/dependencies/HarmonyImportSpecifierDependency.js:165 return moduleGraph.getParentModule(this).buildMeta.strictHarmonyModule ^ TypeError: Cannot read properties of undefined (reading 'buildMeta')...
*Update*: current WIP PR fixes this with copy and pasteable code blocks that also skip the numbers in MD (I've highlighted some code and spacing in this screenshot) -- https://github.com/FormidableLabs/spectacle/pull/934...
Great find! The MDX loader's main job is translating MD in MDX file to JSX and allowing existing JSX to work. The `Appear` element isn't really something first class in...
It's looking more like something that may be primarily in `spectacle-mdx-loader`. As a debugging helper, here's what is currently generated for the above slide: ```js function MDXContentWrapperSlide1(props) { /* @jsx...
This repo (the core library for `spectacle` itself) has absolutely no knowledge whatsoever of MDX. It's completely agnostic. The `spectacle-mdx-loader` is a webpack specific plugin, that transpiles MDX slides to...