Skip to content

Commit 39eb4d3

Browse files
committed
Update package.json with pnpm version
1 parent 19514b0 commit 39eb4d3

File tree

4 files changed

+64
-11
lines changed

4 files changed

+64
-11
lines changed

examples/tailwind-ssg/app/layout.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type { Metadata } from "next";
22
import { Inter } from "next/font/google";
33
import "./globals.css";
44
import { Core } from "nextjs-darkmode";
5-
import { ServerTarget } from "nextjs-darkmode/server";
65

76
const inter = Inter({ subsets: ["latin"] });
87

examples/tailwind-ssg/tailwind.config.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,7 @@ const config: Config = {
66
"./components/**/*.{js,ts,jsx,tsx,mdx}",
77
"./app/**/*.{js,ts,jsx,tsx,mdx}",
88
],
9-
theme: {
10-
extend: {
11-
backgroundImage: {
12-
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
13-
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
14-
},
15-
},
16-
},
9+
theme: {},
1710
plugins: [],
1811
darkMode: "class",
1912
};

pnpm-lock.yaml

Lines changed: 62 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/update-pm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ fs.writeFileSync(path.resolve(__dirname, "../package.json"), JSON.stringify(pack
1212
try {
1313
execSync("git add . && git commit -m 'Update package.json with pnpm version'");
1414
} catch {
15-
// no changesets to be applied
15+
// empty
1616
}

0 commit comments

Comments
 (0)