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

Bump @remix-run/node from 1.12.0 to 1.13.0 #219

Merged
merged 1 commit into from
Feb 16, 2023

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps @remix-run/node from 1.12.0 to 1.13.0.

Release notes

Sourced from @​remix-run/node'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/node's changelog.

1.13.0

Patch Changes

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 will merge this PR once CI passes on it, as requested by @Genne23v.


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)

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 15, 2023

The following labels could not be found: npm dependencies.

@humphd
Copy link
Contributor

humphd commented Feb 15, 2023

@Genne23v we should update all the @remix/* deps as a group I think (they go together).

@SerpentBytes SerpentBytes added the dependency: npm label used by Dependabot for npm related updates label Feb 15, 2023
@Genne23v
Copy link
Contributor

I will take a look after meeting today.

@Genne23v
Copy link
Contributor

Yes, I see all of those modules comes together when I install remix project. remix is deprecating serverBuildTarget that we are not using. And it's introducing new route convention. I will update them all.

When you want to split your route module out into multiple co-located modules, you can turn it into a folder and put the route at folder/route.tsx (or folder/route.jsx) and the rest of the modules in the folder will be ignored.

routes/contact/route.jsx <- this is the route module
routes/contact/form.jsx <- this is just a module, ignored by the route convention

@Genne23v
Copy link
Contributor

@dependabot squash and merge

Genne23v
Genne23v previously approved these changes Feb 15, 2023
@Genne23v Genne23v self-assigned this Feb 15, 2023
Copy link
Contributor

@SerpentBytes SerpentBytes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Genne23v It works locally, but the type-check tests seem to fail on GitHub.

@Genne23v
Copy link
Contributor

Let me update the whole remix-run to see that makes any difference.

@Genne23v Genne23v force-pushed the dependabot/npm_and_yarn/remix-run/node-1.13.0 branch from ecc9208 to 3231db8 Compare February 16, 2023 02:28
Bumps [@remix-run/node](https:/remix-run/remix/tree/HEAD/packages/remix-node) from 1.12.0 to 1.13.0.
- [Release notes](https:/remix-run/remix/releases)
- [Changelog](https:/remix-run/remix/blob/@remix-run/[email protected]/packages/remix-node/CHANGELOG.md)
- [Commits](https:/remix-run/remix/commits/@remix-run/[email protected]/packages/remix-node)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 16, 2023

Dependabot tried to merge this PR, but received the following error from GitHub:

At least 2 approving reviews are required by reviewers with write access.

@Genne23v Genne23v force-pushed the dependabot/npm_and_yarn/remix-run/node-1.13.0 branch from 3231db8 to d74681b Compare February 16, 2023 02:32
@humphd humphd merged commit ef3d840 into main Feb 16, 2023
@humphd humphd deleted the dependabot/npm_and_yarn/remix-run/node-1.13.0 branch February 16, 2023 18:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency: npm label used by Dependabot for npm related updates
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants