Skip to content

Bump @remix-run/express from 1.7.3 to 1.13.0#97

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/remix-run/express-1.13.0
Closed

Bump @remix-run/express from 1.7.3 to 1.13.0#97
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/remix-run/express-1.13.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Feb 15, 2023

Bumps @remix-run/express from 1.7.3 to 1.13.0.

Release notes

Sourced from @​remix-run/express's releases.

v1.13.0

This Valentine's Day, get that special someone in your life what they really want: more styling options—out of the box—in Remix 🥰

Built-in PostCSS support

Remix can now process your existing CSS imports with PostCSS. A lot of folks have been doing this for quite some time, but in Remix this previously required you to run any CSS transformations as a separate process, and imports would need to reference the output rather than the source.

No longer! Now you can import references to the CSS files you actually write and Remix will take care of the rest. This is opt-in under the future.unstable_postcss flag in remix.config. From there, all you need is PostCSS configured in your app.

// remix.config.js
module.exports = {
  future: {
    unstable_postcss: true,
  },
};
// postcss.config.js
module.exports = {
  plugins: [/* your plugins here! */],
  presets: [/* your presets here! */],
};
// app/routes/root.jsx
// huzzah, the stylez are transformed before your very eyes!
import stylesheet from "./root.css";
export function links() {
return [{ rel: "stylesheet", href: stylesheet }];
}

Built-in Tailwind support

Valentine's Day is all about expressing how you feel, and what else evokes stronger feelings than Tailwind? 🙈

For all of our fellow lovers, you can now get your Tailwind styles generated without running a separate process. As with PostCSS, you'll need to opt-in (for now) with the future.unstable_tailwind flag.

// remix.config.js
module.exports = {
  future: {
    unstable_tailwind: true,
  },
};

... (truncated)

Changelog

Sourced from @​remix-run/express's changelog.

1.13.0

Patch Changes

  • Fix fetch Request creation for incoming URLs with double slashes (#5336)
  • Updated dependencies:
    • @remix-run/node@1.13.0

1.12.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.12.0

1.11.1

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.11.1

1.11.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.11.0

1.10.1

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.10.1

1.10.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.10.0

1.9.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.9.0

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@remix-run/express](https://github.com/remix-run/remix/tree/HEAD/packages/remix-express) from 1.7.3 to 1.13.0.
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/@remix-run/express@1.13.0/packages/remix-express/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/express@1.13.0/packages/remix-express)

---
updated-dependencies:
- dependency-name: "@remix-run/express"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Feb 15, 2023
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Mar 2, 2023

Superseded by #99.

@dependabot dependabot Bot closed this Mar 2, 2023
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/remix-run/express-1.13.0 branch March 2, 2023 03:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants