Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update version for release #6264

Merged
merged 4 commits into from
May 1, 2023

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented May 1, 2023

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to release-next, this PR will be updated.

Releases

@remix-run/dev@1.16.0

Minor Changes

  • Enable support for CSS Modules, Vanilla Extract and CSS side-effect imports (#6046)

    These CSS bundling features were previously only available via future.unstable_cssModules, future.unstable_vanillaExtract and future.unstable_cssSideEffectImports options in remix.config.js, but they have now been stabilized.

    CSS Bundle Setup

    In order to use these features, you first need to set up CSS bundling in your project. First install the @remix-run/css-bundle package.

    npm i @remix-run/css-bundle

    Then return the exported cssBundleHref as a stylesheet link descriptor from the links function at the root of your app.

    import type { LinksFunction } from "@remix-run/node"; // or cloudflare/deno
    import { cssBundleHref } from "@remix-run/css-bundle";
    
    export const links: LinksFunction = () => {
      return [
        ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
        // ...
      ];
    };

    CSS Modules

    To use CSS Modules, you can opt in via the .module.css file name convention. For example:

    .root {
      border: solid 1px;
      background: white;
      color: #454545;
    }
    import styles from "./styles.module.css";
    
    export const Button = React.forwardRef(({ children, ...props }, ref) => {
      return <button {...props} ref={ref} className={styles.root} />;
    });
    Button.displayName = "Button";

    Vanilla Extract

    To use Vanilla Extract, first install its css package as a dev dependency.

    npm install -D @vanilla-extract/css

    You can then opt in via the .css.ts/.css.js file name convention. For example:

    import { style } from "@vanilla-extract/css";
    
    export const root = style({
      border: "solid 1px",
      background: "white",
      color: "#454545",
    });
    import * as styles from "./styles.css"; // Note that `.ts` is omitted here
    
    export const Button = React.forwardRef(({ children, ...props }, ref) => {
      return <button {...props} ref={ref} className={styles.root} />;
    });
    Button.displayName = "Button";

    CSS Side-Effect Imports

    Any CSS files that are imported as side-effects (e.g. import "./styles.css") will be automatically included in the CSS bundle.

    Since JavaScript runtimes don't support importing CSS in this way, you'll also need to add any packages using CSS side-effect imports to the serverDependenciesToBundle option in your remix.config.js file. This ensures that any CSS imports are compiled out of your code before running it on the server. For example, to use React Spectrum:

    // remix.config.js
    module.exports = {
      serverDependenciesToBundle: [
        /^@adobe\/react-spectrum/,
        /^@react-spectrum/,
        /^@spectrum-icons/,
      ],
      // ...
    };
  • The Remix dev server spins up your app server as a managed subprocess. (#6133)
    This keeps your development environment as close to production as possible.
    It also means that the Remix dev server is compatible with any app server.

    By default, the dev server will use the Remix App Server, but you opt to use your own app server by specifying the command to run it via the -c/--command flag:

    remix dev # uses `remix-serve <serve build path>` as the app server
    remix dev -c "node ./server.js" # uses your custom app server at `./server.js`

    The dev server will:

    • force NODE_ENV=development and warn you if it was previously set to something else
    • rebuild your app whenever your Remix app code changes
    • restart your app server whenever rebuilds succeed
    • handle live reload and HMR + Hot Data Revalidation

    App server coordination

    In order to manage your app server, the dev server needs to be told what server build is currently being used by your app server.
    This works by having the app server send a "I'm ready!" message with the Remix server build hash as the payload.

    This is handled automatically in Remix App Server and is set up for you via calls to broadcastDevReady or logDevReady in the official Remix templates.

    If you are not using Remix App Server and your server doesn't call broadcastDevReady, you'll need to call it in your app server after it is up and running.
    For example, in an Express server:

    // server.js
    // <other imports>
    import { broadcastDevReady } from "@remix-run/node";
    
    // Path to Remix's server build directory ('build/' by default)
    const BUILD_DIR = path.join(process.cwd(), "build");
    
    // <code setting up your express server>
    
    app.listen(3000, () => {
      const build = require(BUILD_DIR);
      console.log("Ready: http://localhost:" + port);
    
      // in development, call `broadcastDevReady` _after_ your server is up and running
      if (process.env.NODE_ENV === "development") {
        broadcastDevReady(build);
      }
    });

    Options

    Options priority order is: 1. flags, 2. config, 3. defaults.

    Option flag config default
    Command -c / --command command remix-serve <server build path>
    HTTP(S) scheme --http-scheme httpScheme http
    HTTP(S) host --http-host httpHost localhost
    HTTP(S) port --http-port httpPort Dynamically chosen open port
    Websocket port --websocket-port websocketPort Dynamically chosen open port
    No restart --no-restart restart: false restart: true

    🚨 The --http-* flags are only used for internal dev server <-> app server communication.
    Your app will run on your app server's normal URL.

    To set unstable_dev configuration, replace unstable_dev: true with unstable_dev: { <options> }.
    For example, to set the HTTP(S) port statically:

    // remix.config.js
    module.exports = {
      future: {
        unstable_dev: {
          httpPort: 8001,
        },
      },
    };

    SSL and custom hosts

    You should only need to use the --http-* flags and --websocket-port flag if you need fine-grain control of what scheme/host/port for the dev server.
    If you are setting up SSL or Docker networking, these are the flags you'll want to use.

    🚨 Remix will not set up SSL and custom host for you.
    The --http-scheme and --http-host flag are for you to tell Remix how you've set things up.
    It is your task to set up SSL certificates and host files if you want those features.

    --no-restart and require cache purging

    If you want to manage server changes yourself, you can use the --no-restart flag to tell the dev server to refrain from restarting your app server when builds succeed:

    remix dev -c "node ./server.js" --no-restart

    For example, you could purge the require cache of your app server to keep it running while picking up server changes.
    If you do so, you should watch the server build path (build/ by default) for changes and only purge the require cache when changes are detected.

    🚨 If you use --no-restart, it is your responsibility to call broadcastDevReady when your app server has picked up server changes.
    For example, with chokidar:

    // server.dev.js
    const BUILD_PATH = path.resolve(__dirname, "build");
    
    const watcher = chokidar.watch(BUILD_PATH);
    
    watcher.on("change", () => {
      // 1. purge require cache
      purgeRequireCache();
      // 2. load updated server build
      const build = require(BUILD_PATH);
      // 3. tell dev server that this app server is now ready
      broadcastDevReady(build);
    });
  • Stabilize built-in PostCSS support via the new postcss option in remix.config.js. As a result, the future.unstable_postcss option has also been deprecated. (#5960)

    The postcss option is false by default, but when set to true will enable processing of all CSS files using PostCSS if postcss.config.js is present.

    If you followed the original PostCSS setup guide for Remix, you may have a folder structure that looks like this, separating your source files from its processed output:

    .
    β”œβ”€β”€ app
    β”‚   └── styles (processed files)
    β”‚       β”œβ”€β”€ app.css
    β”‚       └── routes
    β”‚           └── index.css
    └── styles (source files)
        β”œβ”€β”€ app.css
        └── routes
            └── index.css
    

    After you've enabled the new postcss option, you can delete the processed files from app/styles folder and move your source files from styles to app/styles:

    .
    β”œβ”€β”€ app
    β”‚   └── styles (source files)
    β”‚       β”œβ”€β”€ app.css
    β”‚       └── routes
    β”‚           └── index.css
    

    You should then remove app/styles from your .gitignore file since it now contains source files rather than processed output.

    You can then update your package.json scripts to remove any usage of postcss since Remix handles this automatically. For example, if you had followed the original setup guide:

    {
      "scripts": {
    -    "dev:css": "postcss styles --base styles --dir app/styles -w",
    -    "build:css": "postcss styles --base styles --dir app/styles --env production",
    -    "dev": "concurrently \"npm run dev:css\" \"remix dev\""
    +    "dev": "remix dev"
      }
    }
  • Stabilize built-in Tailwind support via the new tailwind option in remix.config.js. As a result, the future.unstable_tailwind option has also been deprecated. (#5960)

    The tailwind option is false by default, but when set to true will enable built-in support for Tailwind functions and directives in your CSS files if tailwindcss is installed.

    If you followed the original Tailwind setup guide for Remix and want to make use of this feature, you should first delete the generated app/tailwind.css.

    Then, if you have a styles/tailwind.css file, you should move it to app/tailwind.css.

    rm app/tailwind.css
    mv styles/tailwind.css app/tailwind.css

    Otherwise, if you don't already have an app/tailwind.css file, you should create one with the following contents:

    @tailwind base;
    @tailwind components;
    @tailwind utilities;

    You should then remove /app/tailwind.css from your .gitignore file since it now contains source code rather than processed output.

    You can then update your package.json scripts to remove any usage of tailwindcss since Remix handles this automatically. For example, if you had followed the original setup guide:

    {
      // ...
      "scripts": {
    -    "build": "run-s \"build:*\"",
    +    "build": "remix build",
    -    "build:css": "npm run generate:css -- --minify",
    -    "build:remix": "remix build",
    -    "dev": "run-p \"dev:*\"",
    +    "dev": "remix dev",
    -    "dev:css": "npm run generate:css -- --watch",
    -    "dev:remix": "remix dev",
    -    "generate:css": "npx tailwindcss -o ./app/tailwind.css",
        "start": "remix-serve build"
      }
      // ...
    }

Patch Changes

  • Fix absolute paths in CSS url() rules when using CSS Modules, Vanilla Extract and CSS side-effect imports (#5788)
  • look for @remix-run/serve in devDependencies when running remix dev (#6228)
  • add warning for v2 "cjs"->"esm" serverModuleFormat default change (#6154)
  • write mjs server output files (#6225)
  • don't forward on injects for CSS compiler as it's never loading any JS code and esbuild seems to have a bug with CSS entries + inject (#6238)
  • fix(react,dev): dev chunking and refresh race condition (#6201)
  • Use correct require context in bareImports plugin. (#6181)
  • use minimatch for regex instead of glob-to-regexp (#6017)
  • add logDevReady as replacement for platforms that can't initialize async I/O outside of the request response lifecycle. (#6204)
  • Use the "automatic" JSX runtime when processing MDX files. (#6098)
  • rename devReady to broadcastDevReady (#6194)
  • forcibly kill app server during dev (#6197)
  • Revert "Fix a bug in route matching that was preventing a single splat ($.jsx) route from matching a root / path" (#6222)
  • Fix a bug in route matching that was preventing a single splat ($.jsx) route from matching a root / path (#6130)
  • show first compilation error instead of cancelation errors (#6202)
  • Resolve imports from route modules across the graph back to the virtual module created by the v2 routes plugin. This fixes issues where we would duplicate portions of route modules that were imported. (#6098)
  • Updated dependencies:
    • @remix-run/server-runtime@1.16.0

@remix-run/eslint-config@1.16.0

Minor Changes

  • add deprecation warning to @remix-run/eslint-config/jest ESLint config (#5697)

Patch Changes

  • rename devReady to broadcastDevReady (#6194)

@remix-run/react@1.16.0

Minor Changes

  • Enable support for CSS Modules, Vanilla Extract and CSS side-effect imports (#6046)

    These CSS bundling features were previously only available via future.unstable_cssModules, future.unstable_vanillaExtract and future.unstable_cssSideEffectImports options in remix.config.js, but they have now been stabilized.

    CSS Bundle Setup

    In order to use these features, you first need to set up CSS bundling in your project. First install the @remix-run/css-bundle package.

    npm i @remix-run/css-bundle

    Then return the exported cssBundleHref as a stylesheet link descriptor from the links function at the root of your app.

    import type { LinksFunction } from "@remix-run/node"; // or cloudflare/deno
    import { cssBundleHref } from "@remix-run/css-bundle";
    
    export const links: LinksFunction = () => {
      return [
        ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
        // ...
      ];
    };

    CSS Modules

    To use CSS Modules, you can opt in via the .module.css file name convention. For example:

    .root {
      border: solid 1px;
      background: white;
      color: #454545;
    }
    import styles from "./styles.module.css";
    
    export const Button = React.forwardRef(({ children, ...props }, ref) => {
      return <button {...props} ref={ref} className={styles.root} />;
    });
    Button.displayName = "Button";

    Vanilla Extract

    To use Vanilla Extract, first install its css package as a dev dependency.

    npm install -D @vanilla-extract/css

    You can then opt in via the .css.ts/.css.js file name convention. For example:

    import { style } from "@vanilla-extract/css";
    
    export const root = style({
      border: "solid 1px",
      background: "white",
      color: "#454545",
    });
    import * as styles from "./styles.css"; // Note that `.ts` is omitted here
    
    export const Button = React.forwardRef(({ children, ...props }, ref) => {
      return <button {...props} ref={ref} className={styles.root} />;
    });
    Button.displayName = "Button";

    CSS Side-Effect Imports

    Any CSS files that are imported as side-effects (e.g. import "./styles.css") will be automatically included in the CSS bundle.

    Since JavaScript runtimes don't support importing CSS in this way, you'll also need to add any packages using CSS side-effect imports to the serverDependenciesToBundle option in your remix.config.js file. This ensures that any CSS imports are compiled out of your code before running it on the server. For example, to use React Spectrum:

    // remix.config.js
    module.exports = {
      serverDependenciesToBundle: [
        /^@adobe\/react-spectrum/,
        /^@react-spectrum/,
        /^@spectrum-icons/,
      ],
      // ...
    };
  • Stabilize built-in PostCSS support via the new postcss option in remix.config.js. As a result, the future.unstable_postcss option has also been deprecated. (#5960)

    The postcss option is false by default, but when set to true will enable processing of all CSS files using PostCSS if postcss.config.js is present.

    If you followed the original PostCSS setup guide for Remix, you may have a folder structure that looks like this, separating your source files from its processed output:

    .
    β”œβ”€β”€ app
    β”‚   └── styles (processed files)
    β”‚       β”œβ”€β”€ app.css
    β”‚       └── routes
    β”‚           └── index.css
    └── styles (source files)
        β”œβ”€β”€ app.css
        └── routes
            └── index.css
    

    After you've enabled the new postcss option, you can delete the processed files from app/styles folder and move your source files from styles to app/styles:

    .
    β”œβ”€β”€ app
    β”‚   └── styles (source files)
    β”‚       β”œβ”€β”€ app.css
    β”‚       └── routes
    β”‚           └── index.css
    

    You should then remove app/styles from your .gitignore file since it now contains source files rather than processed output.

    You can then update your package.json scripts to remove any usage of postcss since Remix handles this automatically. For example, if you had followed the original setup guide:

    {
      "scripts": {
    -    "dev:css": "postcss styles --base styles --dir app/styles -w",
    -    "build:css": "postcss styles --base styles --dir app/styles --env production",
    -    "dev": "concurrently \"npm run dev:css\" \"remix dev\""
    +    "dev": "remix dev"
      }
    }
  • Stabilize built-in Tailwind support via the new tailwind option in remix.config.js. As a result, the future.unstable_tailwind option has also been deprecated. (#5960)

    The tailwind option is false by default, but when set to true will enable built-in support for Tailwind functions and directives in your CSS files if tailwindcss is installed.

    If you followed the original Tailwind setup guide for Remix and want to make use of this feature, you should first delete the generated app/tailwind.css.

    Then, if you have a styles/tailwind.css file, you should move it to app/tailwind.css.

    rm app/tailwind.css
    mv styles/tailwind.css app/tailwind.css

    Otherwise, if you don't already have an app/tailwind.css file, you should create one with the following contents:

    @tailwind base;
    @tailwind components;
    @tailwind utilities;

    You should then remove /app/tailwind.css from your .gitignore file since it now contains source code rather than processed output.

    You can then update your package.json scripts to remove any usage of tailwindcss since Remix handles this automatically. For example, if you had followed the original setup guide:

    {
      // ...
      "scripts": {
    -    "build": "run-s \"build:*\"",
    +    "build": "remix build",
    -    "build:css": "npm run generate:css -- --minify",
    -    "build:remix": "remix build",
    -    "dev": "run-p \"dev:*\"",
    +    "dev": "remix dev",
    -    "dev:css": "npm run generate:css -- --watch",
    -    "dev:remix": "remix dev",
    -    "generate:css": "npx tailwindcss -o ./app/tailwind.css",
        "start": "remix-serve build"
      }
      // ...
    }

Patch Changes

  • Bump to React Router 6.11.0-pre.2 (#6223)
  • fix(react,dev): dev chunking and refresh race condition (#6201)
  • Revalidate loaders only when a change to one is detected. (#6135)
  • short circuit links and meta for routes that are not rendered due to errors (#6107)
  • don't warn about runtime deprecation warnings in production (#4421)
  • rename devReady to broadcastDevReady (#6194)
  • Update Remix for React Router no longer relying on useSyncExternalStore (#6121)
  • Fix false-positive resource route identification if a route only exports a boundary (#6125)
  • better type discrimination when unwrapping loader return types (#5516)
  • Bump to router react-router-dom@6.11.0/@remix-run/router@1.6.0 (#6233)

@remix-run/server-runtime@1.16.0

Minor Changes

  • Enable support for CSS Modules, Vanilla Extract and CSS side-effect imports (#6046)

    These CSS bundling features were previously only available via future.unstable_cssModules, future.unstable_vanillaExtract and future.unstable_cssSideEffectImports options in remix.config.js, but they have now been stabilized.

    CSS Bundle Setup

    In order to use these features, you first need to set up CSS bundling in your project. First install the @remix-run/css-bundle package.

    npm i @remix-run/css-bundle

    Then return the exported cssBundleHref as a stylesheet link descriptor from the links function at the root of your app.

    import type { LinksFunction } from "@remix-run/node"; // or cloudflare/deno
    import { cssBundleHref } from "@remix-run/css-bundle";
    
    export const links: LinksFunction = () => {
      return [
        ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
        // ...
      ];
    };

    CSS Modules

    To use CSS Modules, you can opt in via the .module.css file name convention. For example:

    .root {
      border: solid 1px;
      background: white;
      color: #454545;
    }
    import styles from "./styles.module.css";
    
    export const Button = React.forwardRef(({ children, ...props }, ref) => {
      return <button {...props} ref={ref} className={styles.root} />;
    });
    Button.displayName = "Button";

    Vanilla Extract

    To use Vanilla Extract, first install its css package as a dev dependency.

    npm install -D @vanilla-extract/css

    You can then opt in via the .css.ts/.css.js file name convention. For example:

    import { style } from "@vanilla-extract/css";
    
    export const root = style({
      border: "solid 1px",
      background: "white",
      color: "#454545",
    });
    import * as styles from "./styles.css"; // Note that `.ts` is omitted here
    
    export const Button = React.forwardRef(({ children, ...props }, ref) => {
      return <button {...props} ref={ref} className={styles.root} />;
    });
    Button.displayName = "Button";

    CSS Side-Effect Imports

    Any CSS files that are imported as side-effects (e.g. import "./styles.css") will be automatically included in the CSS bundle.

    Since JavaScript runtimes don't support importing CSS in this way, you'll also need to add any packages using CSS side-effect imports to the serverDependenciesToBundle option in your remix.config.js file. This ensures that any CSS imports are compiled out of your code before running it on the server. For example, to use React Spectrum:

    // remix.config.js
    module.exports = {
      serverDependenciesToBundle: [
        /^@adobe\/react-spectrum/,
        /^@react-spectrum/,
        /^@spectrum-icons/,
      ],
      // ...
    };
  • The Remix dev server spins up your app server as a managed subprocess. (#6133)
    This keeps your development environment as close to production as possible.
    It also means that the Remix dev server is compatible with any app server.

    By default, the dev server will use the Remix App Server, but you opt to use your own app server by specifying the command to run it via the -c/--command flag:

    remix dev # uses `remix-serve <serve build path>` as the app server
    remix dev -c "node ./server.js" # uses your custom app server at `./server.js`

    The dev server will:

    • force NODE_ENV=development and warn you if it was previously set to something else
    • rebuild your app whenever your Remix app code changes
    • restart your app server whenever rebuilds succeed
    • handle live reload and HMR + Hot Data Revalidation

    App server coordination

    In order to manage your app server, the dev server needs to be told what server build is currently being used by your app server.
    This works by having the app server send a "I'm ready!" message with the Remix server build hash as the payload.

    This is handled automatically in Remix App Server and is set up for you via calls to broadcastDevReady or logDevReady in the official Remix templates.

    If you are not using Remix App Server and your server doesn't call broadcastDevReady, you'll need to call it in your app server after it is up and running.
    For example, in an Express server:

    // server.js
    // <other imports>
    import { broadcastDevReady } from "@remix-run/node";
    
    // Path to Remix's server build directory ('build/' by default)
    const BUILD_DIR = path.join(process.cwd(), "build");
    
    // <code setting up your express server>
    
    app.listen(3000, () => {
      const build = require(BUILD_DIR);
      console.log("Ready: http://localhost:" + port);
    
      // in development, call `broadcastDevReady` _after_ your server is up and running
      if (process.env.NODE_ENV === "development") {
        broadcastDevReady(build);
      }
    });

    Options

    Options priority order is: 1. flags, 2. config, 3. defaults.

    Option flag config default
    Command -c / --command command remix-serve <server build path>
    HTTP(S) scheme --http-scheme httpScheme http
    HTTP(S) host --http-host httpHost localhost
    HTTP(S) port --http-port httpPort Dynamically chosen open port
    Websocket port --websocket-port websocketPort Dynamically chosen open port
    No restart --no-restart restart: false restart: true

    🚨 The --http-* flags are only used for internal dev server <-> app server communication.
    Your app will run on your app server's normal URL.

    To set unstable_dev configuration, replace unstable_dev: true with unstable_dev: { <options> }.
    For example, to set the HTTP(S) port statically:

    // remix.config.js
    module.exports = {
      future: {
        unstable_dev: {
          httpPort: 8001,
        },
      },
    };

    SSL and custom hosts

    You should only need to use the --http-* flags and --websocket-port flag if you need fine-grain control of what scheme/host/port for the dev server.
    If you are setting up SSL or Docker networking, these are the flags you'll want to use.

    🚨 Remix will not set up SSL and custom host for you.
    The --http-scheme and --http-host flag are for you to tell Remix how you've set things up.
    It is your task to set up SSL certificates and host files if you want those features.

    --no-restart and require cache purging

    If you want to manage server changes yourself, you can use the --no-restart flag to tell the dev server to refrain from restarting your app server when builds succeed:

    remix dev -c "node ./server.js" --no-restart

    For example, you could purge the require cache of your app server to keep it running while picking up server changes.
    If you do so, you should watch the server build path (build/ by default) for changes and only purge the require cache when changes are detected.

    🚨 If you use --no-restart, it is your responsibility to call broadcastDevReady when your app server has picked up server changes.
    For example, with chokidar:

    // server.dev.js
    const BUILD_PATH = path.resolve(__dirname, "build");
    
    const watcher = chokidar.watch(BUILD_PATH);
    
    watcher.on("change", () => {
      // 1. purge require cache
      purgeRequireCache();
      // 2. load updated server build
      const build = require(BUILD_PATH);
      // 3. tell dev server that this app server is now ready
      broadcastDevReady(build);
    });
  • Stabilize built-in PostCSS support via the new postcss option in remix.config.js. As a result, the future.unstable_postcss option has also been deprecated. (#5960)

    The postcss option is false by default, but when set to true will enable processing of all CSS files using PostCSS if postcss.config.js is present.

    If you followed the original PostCSS setup guide for Remix, you may have a folder structure that looks like this, separating your source files from its processed output:

    .
    β”œβ”€β”€ app
    β”‚   └── styles (processed files)
    β”‚       β”œβ”€β”€ app.css
    β”‚       └── routes
    β”‚           └── index.css
    └── styles (source files)
        β”œβ”€β”€ app.css
        └── routes
            └── index.css
    

    After you've enabled the new postcss option, you can delete the processed files from app/styles folder and move your source files from styles to app/styles:

    .
    β”œβ”€β”€ app
    β”‚   └── styles (source files)
    β”‚       β”œβ”€β”€ app.css
    β”‚       └── routes
    β”‚           └── index.css
    

    You should then remove app/styles from your .gitignore file since it now contains source files rather than processed output.

    You can then update your package.json scripts to remove any usage of postcss since Remix handles this automatically. For example, if you had followed the original setup guide:

    {
      "scripts": {
    -    "dev:css": "postcss styles --base styles --dir app/styles -w",
    -    "build:css": "postcss styles --base styles --dir app/styles --env production",
    -    "dev": "concurrently \"npm run dev:css\" \"remix dev\""
    +    "dev": "remix dev"
      }
    }
  • Stabilize built-in Tailwind support via the new tailwind option in remix.config.js. As a result, the future.unstable_tailwind option has also been deprecated. (#5960)

    The tailwind option is false by default, but when set to true will enable built-in support for Tailwind functions and directives in your CSS files if tailwindcss is installed.

    If you followed the original Tailwind setup guide for Remix and want to make use of this feature, you should first delete the generated app/tailwind.css.

    Then, if you have a styles/tailwind.css file, you should move it to app/tailwind.css.

    rm app/tailwind.css
    mv styles/tailwind.css app/tailwind.css

    Otherwise, if you don't already have an app/tailwind.css file, you should create one with the following contents:

    @tailwind base;
    @tailwind components;
    @tailwind utilities;

    You should then remove /app/tailwind.css from your .gitignore file since it now contains source code rather than processed output.

    You can then update your package.json scripts to remove any usage of tailwindcss since Remix handles this automatically. For example, if you had followed the original setup guide:

    {
      // ...
      "scripts": {
    -    "build": "run-s \"build:*\"",
    +    "build": "remix build",
    -    "build:css": "npm run generate:css -- --minify",
    -    "build:remix": "remix build",
    -    "dev": "run-p \"dev:*\"",
    +    "dev": "remix dev",
    -    "dev:css": "npm run generate:css -- --watch",
    -    "dev:remix": "remix dev",
    -    "generate:css": "npx tailwindcss -o ./app/tailwind.css",
        "start": "remix-serve build"
      }
      // ...
    }

Patch Changes

  • add logDevReady as replacement for platforms that can't initialize async I/O outside of the request response lifecycle. (#6204)
  • rename devReady to broadcastDevReady (#6194)
  • better type discrimination when unwrapping loader return types (#5516)
  • Bump to router react-router-dom@6.11.0/@remix-run/router@1.6.0 (#6233)
  • pass AppLoadContext to handleRequest (#5836)

@remix-run/testing@1.16.0

Minor Changes

  • Enable support for CSS Modules, Vanilla Extract and CSS side-effect imports (#6046)

    These CSS bundling features were previously only available via future.unstable_cssModules, future.unstable_vanillaExtract and future.unstable_cssSideEffectImports options in remix.config.js, but they have now been stabilized.

    CSS Bundle Setup

    In order to use these features, you first need to set up CSS bundling in your project. First install the @remix-run/css-bundle package.

    npm i @remix-run/css-bundle

    Then return the exported cssBundleHref as a stylesheet link descriptor from the links function at the root of your app.

    import type { LinksFunction } from "@remix-run/node"; // or cloudflare/deno
    import { cssBundleHref } from "@remix-run/css-bundle";
    
    export const links: LinksFunction = () => {
      return [
        ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
        // ...
      ];
    };

    CSS Modules

    To use CSS Modules, you can opt in via the .module.css file name convention. For example:

    .root {
      border: solid 1px;
      background: white;
      color: #454545;
    }
    import styles from "./styles.module.css";
    
    export const Button = React.forwardRef(({ children, ...props }, ref) => {
      return <button {...props} ref={ref} className={styles.root} />;
    });
    Button.displayName = "Button";

    Vanilla Extract

    To use Vanilla Extract, first install its css package as a dev dependency.

    npm install -D @vanilla-extract/css

    You can then opt in via the .css.ts/.css.js file name convention. For example:

    import { style } from "@vanilla-extract/css";
    
    export const root = style({
      border: "solid 1px",
      background: "white",
      color: "#454545",
    });
    import * as styles from "./styles.css"; // Note that `.ts` is omitted here
    
    export const Button = React.forwardRef(({ children, ...props }, ref) => {
      return <button {...props} ref={ref} className={styles.root} />;
    });
    Button.displayName = "Button";

    CSS Side-Effect Imports

    Any CSS files that are imported as side-effects (e.g. import "./styles.css") will be automatically included in the CSS bundle.

    Since JavaScript runtimes don't support importing CSS in this way, you'll also need to add any packages using CSS side-effect imports to the serverDependenciesToBundle option in your remix.config.js file. This ensures that any CSS imports are compiled out of your code before running it on the server. For example, to use React Spectrum:

    // remix.config.js
    module.exports = {
      serverDependenciesToBundle: [
        /^@adobe\/react-spectrum/,
        /^@react-spectrum/,
        /^@spectrum-icons/,
      ],
      // ...
    };

Patch Changes

create-remix@1.16.0

Patch Changes

  • enable unstable_dev by default in the remix template (#6180)
  • Updated dependencies:
    • @remix-run/dev@1.16.0

@remix-run/architect@1.16.0

Patch Changes

  • feat: support async getLoadContext in all adapters (#6170)
  • Updated dependencies:
    • @remix-run/node@1.16.0

@remix-run/cloudflare@1.16.0

Patch Changes

  • feat: support async getLoadContext in all adapters (#6170)
  • add logDevReady as replacement for platforms that can't initialize async I/O outside of the request response lifecycle. (#6204)
  • rename devReady to broadcastDevReady (#6194)
  • Updated dependencies:
    • @remix-run/server-runtime@1.16.0

@remix-run/cloudflare-pages@1.16.0

Patch Changes

  • feat: support async getLoadContext in all adapters (#6170)
  • Updated dependencies:
    • @remix-run/cloudflare@1.16.0

@remix-run/cloudflare-workers@1.16.0

Patch Changes

  • feat: support async getLoadContext in all adapters (#6170)
  • Updated dependencies:
    • @remix-run/cloudflare@1.16.0

@remix-run/css-bundle@1.16.0

Patch Changes

  • Updated dependencies:
    • @remix-run/dev@1.16.0

@remix-run/deno@1.16.0

Patch Changes

  • add logDevReady as replacement for platforms that can't initialize async I/O outside of the request response lifecycle. (#6204)
  • rename devReady to broadcastDevReady (#6194)
  • Updated dependencies:
    • @remix-run/server-runtime@1.16.0

@remix-run/express@1.16.0

Patch Changes

  • feat: support async getLoadContext in all adapters (#6170)
  • Updated dependencies:
    • @remix-run/node@1.16.0

@remix-run/netlify@1.16.0

Patch Changes

  • feat: support async getLoadContext in all adapters (#6170)
  • Updated dependencies:
    • @remix-run/node@1.16.0

@remix-run/node@1.16.0

Patch Changes

  • add @remix-run/node/install side-effect to allow node --require @remix-run/node/install (#6132)
  • add logDevReady as replacement for platforms that can't initialize async I/O outside of the request response lifecycle. (#6204)
  • rename devReady to broadcastDevReady (#6194)
  • add missing files to published package (#6179)
  • Updated dependencies:
    • @remix-run/server-runtime@1.16.0

@remix-run/serve@1.16.0

Patch Changes

  • add @remix-run/node/install side-effect to allow node --require @remix-run/node/install (#6132)
  • rename devReady to broadcastDevReady (#6194)
  • Updated dependencies:
    • @remix-run/express@1.16.0
    • @remix-run/node@1.16.0

@remix-run/vercel@1.16.0

Patch Changes

  • feat: support async getLoadContext in all adapters (#6170)
  • Updated dependencies:
    • @remix-run/node@1.16.0

remix@1.16.0

remix

See the CHANGELOG.md in individual Remix packages for all changes.

@brophdawg11 brophdawg11 merged commit 6b9deca into release-next May 1, 2023
9 checks passed
@brophdawg11 brophdawg11 deleted the changeset-release/release-next branch May 1, 2023 19:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant