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 - v4.2.15

Published by fivethreeo over 2 years ago

Patches

  • Fix(examples-with-heroku): adjust package build scripts: 1331265ded3dab40473b5833ccf0c0254a19a0b5
  • Fix(razzle): Update createConfigAsync.js to support externalizing .cjs files
razzle - v4.2.14

Published by fivethreeo over 2 years ago

Patches

  • Fix: make express bundling work: 0905ae77ae57b5f00efa8d0c97bc7ebdda841ffe
  • Fix: make express bundle correctly: 3f278474599dca6a0eef873025732bc0f0829d84
  • Create layer0.md: 8a16fc6f44446e70fe46d31bcac3ff94725b42b6
  • Feat(plugin): add razzle-plugin-devcert: 0a037e512ff2dbe7559a0e40a61fc01940c9dc60
  • Remove css logs: 63241bcfb83f05d1115041d95233caa7d70f5189
  • Update webpack 5 version in docs: ba3575c47e6943ed1246cfc0dd485fd1278860f9
razzle - v4.2.13

Published by fivethreeo almost 3 years ago

Patches

  • Feat: add serverless example: 30e3ee4570bfc9ca0f730f33dd3b1f27cfa58218
  • Fix: update examples list: c495dccb04579e97357e520aec4e876f5fa13471
razzle - v4.2.12

Published by fivethreeo almost 3 years ago

Patches

  • Fix: fix default route in default template: 18ffcc52d2eb7da9333990a984fffd87a953ff81
razzle - v4.2.11

Published by fivethreeo almost 3 years ago

Patches

  • Fix: use switch not routes: aabb4b46da1f5daa421c4cac0ffb7630508f6d0d
razzle - v4.2.10

Published by fivethreeo almost 3 years ago

Patches

  • Fix: fix import for staticrouter in default template: dc53d12ba7a560e8d5622a4527712f271866cc91
razzle - v4.2.9

Published by fivethreeo almost 3 years ago

Patches

  • Fix: respect pinning in default cra template: 95bc7260f426102ab5d2c7bc8b3563387e5c6a04
razzle - v4.2.8

Published by fivethreeo almost 3 years ago

Patches

  • Implemented using create-razzle-app to create project in existing folder: ef465a3225b5d15baa2a1cef2864c2d3130b0ead
  • Added facebook/create-react-app's logic for determining whether a dir is safe to create project in.: c77f9281e6b9659688e894b94659e427cca37bda
  • Update react-router-dom syntax: 2a549fed6d1414433db0e55ca89cc2b647547fe3
razzle - v4.2.7

Published by fivethreeo almost 3 years ago

Patches

  • Fix: process.env won't be overwritten by razzle-plugin-manifest: 433039cbafd206864e6a3c9348c2278b2f46e3c5
  • Fix(razzle): make errors log correctly in build: 52bc1c700d47eda248aa70220de8c54738aa78fd
razzle - v4.2.6

Published by fivethreeo almost 3 years ago

  • Feat: add razzle-plugin-manifest: #1748
  • Feat: add webpack-manifest-plugin as dependecy: #1749

Credits

Huge thanks to @nimaa77 for helping!

razzle - v4.2.5

Published by fivethreeo almost 3 years ago

Patches

  • 📝 update documentation: c76d37354a9e179fc8c7f08c60548b65f84203b2
  • Fix (razzle-dev-utils): make webpackHotDevClient work w/ webpack-dev-server v4: 7d6857f8b1dd615580b27d0548d43ef473d7219b
  • 👌 markdown plugin removed, mdx plugin already allows to load markdown; documentation and example of mdx extended: 7f2bd47833bac7f036fd61ed8b2f07e63f65df79
  • Fix (razzle|razzle-dev-utils): Eliminate createSocketUrl warning: 548caa37e8bcf0ea65552b80cdc03da9f154ca73
razzle - v4.2.4

Published by fivethreeo almost 3 years ago

Patches

  • Fix razzle-dev-utils to add new devServerMajor.js to files - Hopefully the last change to fix #1704: 4110b75abd6effd8cce1530989ec1fd99ccdd72c
razzle - v4.2.3

Published by fivethreeo almost 3 years ago

Patches

  • Chore(deps): bump axios from 0.19.2 to 0.21.2: c75c909e582a44553f607440e051792058810cd5
  • Follow-up fix for #1704 to remove some warnings - Updated packages/razzle/package.json to allow webpack-dev-server v4 as a peerDependency - Updated createConfigAsync.js to move the hot: true flag into just the v3 config since it is on by default for v4 removing the following warning: [webpack-dev-server] "hot: true" automatically applies HMR plugin, you don't have to add it manually to your webpack configuration.: c87ba641095a90d74ecc175fc7c6782b1385a6f7
  • Merge pull request #1735 from heath-freenome/minor-update-to-remove-warnings: 7682f470c7247346b424947f12b2f2a50fedb616
  • Additional follow-up fix for #1704 to remove remaining warnings - Added devServerMajor.js to razzle-dev-utils that refactors the detection of the webpack-dev-server version in a manner similar to webpackMajor.js - Updated webpackHotDevClient.js to use devServerMajor.js to pickup the properly cased createSocketUrl - Hopefully this approach won't break things like the change that was made previously that ended up getting reverted - Updated createConfigAsync.js to use razzle-dev-utils/devServerMajor for the webpack-dev-server version as well as: - Restored hot: true to the common devServer config and instead only explicitly adding the HMR to the plugins for v3 to avoid the following warning: [webpack-dev-server] "hot: true" automatically applies HMR plugin, you don't have to add it manually to your webpack configuration. - Updated start.js script to include devServerMajor.js so that v4 will start/stop the client dev server rather than listen/close used for v3 - Also added port into the copied devServer config to allow start() to work properly: 2a362ae8d5e8d7c898aba5ecfec8ef1f7b00d35c
    • Removed extraneous console.error(): de1903e518ee18a55566c27bd6366b817d077399
    • Fixed the initialization of createSocketUrl variable to happen before it is used: 2cd80756a869425745f37270646c7b08dab42dd4
    • Simplify verbose: verbose down to verbose during object declaration: e03de4858ad81cfcf5479b24b1785f9ee4f8a9af
    • Fixed spelling in a comment: 722186a0bc40c4de5d38d276c0dbec4a3b828a09
    • Fix another comment: a8592781ad7b30cc31a9df2a19a769dfd054a619
    • Fixed another comment: 9754732f7e6edb6e28085cfe49ee0bb536271b60
    • Responded to reviewer feedback to use the callback versions of start() and stop() with a generic error handler: 8c9045545491c7af8d79f50336a8b1c098c1f30e
  • Merge pull request #1736 from heath-freenome/additional-update-to-fix-warnings: 6cdf8071a520cb5c4439e9e9dfad0a8f76e08138
  • Merge pull request #1732 from jaredpalmer/dependabot/npm_and_yarn/axios-0.21.2: 6e4711164aedc58e11b8fcdef4d7769938e79cee
razzle - v4.2.2

Published by fivethreeo about 3 years ago

Patches

  • Revert "fix(razzle-dev-utils): fix createSocketUrl module path": abbf6af11dd884af575405a896409497540a9722
razzle - v4.2.1

Published by fivethreeo about 3 years ago

Patches

  • Fix(razzle-dev-utils): fix createSocketUrl module path: a56bb34b715f5bde48acb21a9c2f08d52c9096f3
razzle - v4.2.0

Published by fivethreeo about 3 years ago

Minor Changes

  • Merge pull request #1717 from budiadiono/patch-1: e81216befb317f26dcc303ed755cbe06a72f94bd
  • Fix (razzle #1704) by adding support for webpack-dev-server v4 - Updated package.meta.json and packages/razzle-dev-utils/package.json to allow for v3 and v4 of webpack-dev-server - Updated defaultOptions.js to add a new default option: enableDevServerV4: false - Updated createConfigAsync.js to build the correct devServer config for v3 or v4 based on the enableDevServerV4 option - Added a new with-webpack-dev-server-v4 example: c3625eb1e19886187bcfc673d5beb30f512092e3
    • Responded to reviewer feedback to directly access the version of webpack-dev-server from its package.json - Updated with-webpack-dev-server-v4 the README.md and razzle.config.js files to throw an error if not using version 4: 48356b2f63164b18bf95d18d7b1c8b8edd098f47
    • Removed extraneous blank line added in previous commit: db1e7982b906bc31d8b6e57f31279481f51263c8
    • Responded to more reviewer feedback by moving the new require() up to the top and collecting common options and Object.assign()ing the v3 and v3 specific ones: 58040702ccad4ee88b85a0929328293e2082d5d4
    • Responded to feedback by moving the devServerMajorVersion up to the top of the file: 51b7c29f2852cda753d4c398a2e7716aa60af83c

Patches

  • Fix: StaticRouterContext should be imported from "react-router": cfe825c4814e5a9dd3ff8149578afe2f813a33a3
  • Chore: added "cache" folder to .gitignore: 5b7da106b90e0a5f3bfe0a1f6b524e5ee0553949
razzle -

Published by fivethreeo about 3 years ago

Minor Changes

  • Fix(create-razzle-app): git ignore generated cache directory: 326ff51e880b29d78cb2af9d60286c065aae211e
  • Example(with-fastify): added with-fastify example and implementation: 5ba7e96940ecc9191109ac5d39445796c87914d3
  • Feat(build-script): add development build feature: 497159d76715e4b1b1c0a4e4082ef6bd4cb12980
  • Feat(razzle): add support for dev build: b6b63d6ec0f23f2ff0b9d70e16a80ea00ab77aca
  • Test(razzle): add test for development build: 46e47b1609e0bf818c33c251417600f6cf2f5684

Patches

  • Fix(example): With-typescript example uses StaticRouterContext: 66143e8205d587a534489c4131b3ac2f5e4ca11d
  • Docs(example) improve with-development-build's README: b35b7ced666ab9352077962c82b12bcd87e939ee
  • Fix(razzle): fix optimizaton cofig in dev buil: 05c95d7812f9cb91e180777a6e14c411e9be9b55
  • Fix(example): .eslintrc.js: 8bb9b036a3aae1b3069203213165752197f29600
razzle - v4.0.6

Published by fivethreeo about 3 years ago

Patches

  • Fix(deps) allow for bump mini-css-extract-plugin to version smaller than 1.0.0 to provide webpack5 support: 750cc9f206c8eeb3e0c2500b22b8df7a60ef7a40
  • Fix(deps): fix mini-css-extract-version-in-scss-and-less-plugins: 65c2ba27ecaf35e56839201170c152bcfb4f73f6
  • Docs: fix aws deployment docs to include required import of path: e349755c77095ffb0f51eed1dbdd011c877fc622
razzle - v4.0.5

Published by fivethreeo over 3 years ago

  • Examples: fix postcss deps: 221bad65967f3aab1a6e1342a6f254459b451981
  • Examples: add esbuild-loader example: e059f974aec202793f18ae3b8fa9bf48ea2c51ea
  • Chore: fix 'Welcome to Razzles' typo: 7c11b3fc29a995bb7b700d2afb97bae153644209
  • Merge pull request #1597 from rclmenezes/add-esbuild-loader-example: 19fb83954f9aeede49e265740b3fbf964539450c
  • Chore: run update-examples: 2f3cd24aa00e64609dfecc5d2949c121aab6b1d6
  • Update typos in getting-started: 5691721e2f4609b45a5e04cd3c8e0693293e4de8
  • Merge pull request #1599 from meeoh/patch-1: 855dc46f54a972722af322e2811c7b21040108b3
  • Feat(razzle): add option to disableWebpackbar: 6e7631378221b9d6d34997ff3fbc5a3fb6e0d388
  • Fix(razzle): disableWebpackbar logic: b8dfb330b1266d21cefe61f5ca2ea59a9202df97
  • Merge pull request #1600 from ceopaludetto/feat/add-disablewebpackbar-option: 3dd0d54f617f7174c77ea9347812693c2b033290
  • Docs: add transpilation of external modules: d45ae7d61cf2c29b6b34c580646069986de36c58
  • Docs: better indentation: 24d99a6b607f2a633a09a58173a9c99e04a5c0ce
  • Docs: inform on create-razzle-app npx cache: 834796ec555f2022683629ec8af90f3f7c964d34
  • Fix(razzle): Ignore .env.local when running tests: 0c47ba10eb0b96cfc14df5de054c88132faa76ed
  • Merge pull request #1612 from squiddy/skip-local-environment-for-tests: 559fe2c8a81b3a5449c65a2f65147fd9c048b8b7
  • Use correct url for common issues: 0f9fdd76f261d7bd218bb10721ba113d482a53c2
  • Docs: Fix error in preset readme regarding installation: 1344f8277c1f5e28e2f70f68b1f1d6545e1e94b4
  • Merge pull request #1615 from squiddy/patch-1: 92ef4c2667e2f8123085ca3893d42dd18b9a96a5
  • Merge pull request #1614 from mtxr/patch-1: eafcd1453a97b3b3978c49230177cabb6df6f3d8
  • Feat(razzle): Make package.json optional: f1fdf1c207f3d252e6fd2e80b6afab3e69044aa3
  • Examples: Add monorepo without workspaces: 3c6a24fe22e762c9f8258add1cb0959370498b78
  • Merge pull request #1617 from squiddy/make-packagejson-optional: bae26bfd509570bb05f3059bcc220ed86434d00e
  • Fix(razzle): Undefined error in getPublicUrl: 26cd24c179820fbc4b2ff67c657babd84c72a349
  • Merge pull request #1618 from squiddy/fix-error-in-package-json-check: 705b5b4b1a796821e6f9f66ffa48408606011c23
  • Fix(razzle): Exit start command on unhandled rejections: 29e354986bddb9316d743a002951a9ce93d1196f
  • Feat(razzle): Align unhandled rejection output across all entrypoints: ac03265c6226f2aacb1a5bdb1704a2bd9e76ec62
  • Docs(razzle-plugin-scss): Fix incorrect default values: d3c7fa201ef25dd5fa99e52aab882cbb846cadfc
  • Merge pull request #1621 from squiddy/plugin-scss-fix-docs: 446a412f821a6dc449530b7a0205ed14b34f4ad8
  • Merge pull request #1620 from squiddy/report-config-errors-for-start: 4b5dcda73f476332024e594e9b98fb37e6491146
  • Docs: transpilation of external modules: d726709a5b3a47d81998bbd66ce473594f448b21
  • Fix(deps): don't lock packages to patch versions: 180e58e74db71b3afd4e9385fca27b6daa7dbf83
  • Fix(razzle): update manifest plugin: 2d743ecdefbcf44e96cc78c86e68afcb56ab3a12
  • Examples(with-loadable-components): fix webpack5 issue: 85f69841902969b8c9ab186c04e602a14bd99fd6
  • Update README.md: 11a17bdf4f7468978d36836523b42557fbe22ad0
  • Merge pull request #1629 from divyenduz/patch-1: a471f3c54ed164c963ffbc63bd2a6d61fa7940ab
  • Fix: add require.resolve instead of string for graphql-tag/loader for razzle-plugin-graphql: cef7a7736fc2b1dd7a708b57cfd83308c01649b4
  • Merge pull request #1631 from Aeonrush/fix-razzle-plugin-graphql-with-monorepo: 7499531221950d86575973751ce7b3235c8b6cca
  • Update customization.md: eca777bc04b8d0445477a681ee111b84a7dc1032
  • Fix(examples): use a valid version: eb8c086a1efdd946a57bcc3c6d99d0b42446ea37
razzle - v4.0.4

Published by fivethreeo over 3 years ago

Patches

  • Fix(razzle): use paths.appAssetsManifest in ManifestPlugin: f374eb6ddad054d4ce166c61b11ff28f437bc8c5