Skip to content

Commit

Permalink
Merge pull request #3469 from quantified-uncertainty/node-v22
Browse files Browse the repository at this point in the history
Node v22
  • Loading branch information
berekuk authored Dec 27, 2024
2 parents 4ad9915 + b57ca5e commit dfcb095
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion apps/hub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
"node": "22.x"
},
"scripts": {
"db:migrate:dev": "PRISMA_HIDE_UPDATE_MESSAGE=1 prisma migrate dev",
Expand Down
2 changes: 1 addition & 1 deletion apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"license": "MIT",
"engines": {
"node": "20.x"
"node": "22.x"
},
"scripts": {
"dev": "next dev --turbo",
Expand Down
2 changes: 1 addition & 1 deletion internal-packages/content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"private": true,
"engines": {
"node": "=20.x"
"node": "22.x"
},
"scripts": {
"dev": "content-collections watch",
Expand Down
2 changes: 1 addition & 1 deletion internal-packages/content/src/collections/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { TransformOptions } from "@fumadocs/content-collections/configuration";
import rehypeKatex from "rehype-katex";
import remarkMath from "remark-math";

import squiggleGrammar from "@quri/squiggle-textmate-grammar/dist/squiggle.tmLanguage.json" assert { type: "json" };
import squiggleGrammar from "@quri/squiggle-textmate-grammar/dist/squiggle.tmLanguage.json" with { type: "json" };

export const mdxOptions: TransformOptions = {
// https://fumadocs.vercel.app/docs/ui/math#add-plugins
Expand Down
3 changes: 0 additions & 3 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "@quri/squiggle-components",
"version": "0.10.1-0",
"license": "MIT",
"engines": {
"node": "20.x"
},
"repository": {
"type": "git",
"url": "https://github.com/quantified-uncertainty/squiggle.git",
Expand Down
3 changes: 0 additions & 3 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "@quri/ui",
"version": "0.2.3",
"license": "MIT",
"engines": {
"node": ">=20.x"
},
"repository": {
"type": "git",
"url": "https://github.com/quantified-uncertainty/squiggle.git",
Expand Down
4 changes: 3 additions & 1 deletion packages/ui/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import formsPlugin from "@tailwindcss/forms";

const config = {
content: ["./src/**/*.tsx"],
plugins: [require("@tailwindcss/forms")],
plugins: [formsPlugin],
};

export default config;

0 comments on commit dfcb095

Please sign in to comment.