razzle

✨ Create server-rendered universal JavaScript applications with no configuration

MIT License

Downloads
241.5K
Stars
11.1K
Committers
183

Bot releases are hidden (Show)

razzle -

Published by jaredpalmer almost 7 years ago

  • Add react-loadable example
  • Support PUBLIC_PATH so assets can be served from a cdn
  • Added polyfills by default
razzle -

Published by jaredpalmer about 7 years ago

Patch

  • Allow Jest modulePaths to be overridden. This gives allows users that have modified config.resolve.alias the ability to use Razzle's built in Jest setup.
razzle -

Published by jaredpalmer about 7 years ago

Patch

  • #334 Fix ternary expression causing false in html string template in examples and default template
razzle -

Published by jaredpalmer about 7 years ago

Patch

  • Fix react-error-overlay by adding crossorigin attribute to script tag

Existing projects

To get the benefit of the error overlay (which is like CRA's) just make sure to add a crossorigin attribute to your <script> tag in your template in server.js during development.

To get runtime error overlay working, make add a crossorigin attribute to your script tag in server.js

  ${process.env.NODE_ENV === 'production'
            ? `<script src="${assets.client.js}" defer></script>`
            : `<script src="${assets.client.js}" defer crossorigin></script>`}

If you don't, nothing bad happens, you'll only see errors in the console though.

razzle -

Published by jaredpalmer about 7 years ago

  • New error overlay like CRA's
  • Eslint support. Create .eslintrc to override
  • Updated Reason example
  • Update Typescript example
razzle - v0.7.6-rc2

Published by jaredpalmer about 7 years ago

  • Fix #287 . Node 8.0.0+ compat issue on Windows
  • Support .sass file endings
razzle -

Published by jaredpalmer about 7 years ago

  • Prevents file-loader from intercepting .sass files
razzle - v0.7.3

Published by jaredpalmer over 7 years ago

Patch Release

Prevent file-loader from consuming .less files.

razzle - v0.7.2

Published by jaredpalmer over 7 years ago

Patch Release

  • Fix a bug related to custom file types being swept up by file-loader (specifically .scss)
razzle - v0.7.1

Published by jaredpalmer over 7 years ago

Patch release

  • Relaxed Jest configuration options
razzle - v0.7.0

Published by jaredpalmer over 7 years ago

New Features

  • razzle test - Run jest test runner in watch mode by default. Watch mode is disabled in the presence of process.env.CI=true or in non-interactive shells. Use --env=jsdom to use jsdom configuration.
  • Nicer error formatting on failed builds
  • Improved TypeScript example and docs
  • Examples and default template now include App.test.js
razzle - v0.6.5

Published by jaredpalmer over 7 years ago

Patch Release

  • Fixed issue with different server asset output paths breaking React checksum
razzle - v0.6.4

Published by jaredpalmer over 7 years ago

  • Output client sourcemaps in production
  • Maintain parity with create-react-app's CSS
  • Maintain parity with create-react-app's UglifyJS
razzle - v0.6.3

Published by jaredpalmer over 7 years ago

  • Patch an issue with yarn create and path to default template
  • Clean up some docs
razzle - v0.6.1

Published by jaredpalmer over 7 years ago

  • create-razzle-app, deprecated razzle-cli
  • More examples
  • Updated docs
  • New .env configuration that matches create-react-app's
razzle - v0.6.0-rc2

Published by jaredpalmer over 7 years ago

  • Better logging, no more assets.json error on initial startup
  • New environment variable setup that mimic's create-react-app
  • e2e tests!
  • New examples for custom webpack and custom environment variables
razzle - v0.5.4

Published by jaredpalmer over 7 years ago

  • Drop QR code generation
  • Remove deprecation message
razzle - v0.5.3

Published by jaredpalmer over 7 years ago

  • Default host is now localhost for better Windows support
  • Added Reason-React example!
razzle - v0.5.2

Published by jaredpalmer over 7 years ago

Patch

  • Fix an issue with non-default dev server port.
razzle - v0.5.0

Published by jaredpalmer over 7 years ago

See #265 for more details...

  • Use .env for build-time environment variables like CRA
  • Update docs with new settings
  • Add deprecation warning if host, port, or clearConsole are specified in razzle.config.js, but do not break any builds.
  • Added TypeScript example
  • Nicer console spacing on successful build task