Skip to content

Commit 73ae6f0

Browse files
committed
chore: deps and stuff, tailwind 4
1 parent 7afe067 commit 73ae6f0

File tree

15 files changed

+117
-89
lines changed

15 files changed

+117
-89
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ runs:
1818

1919
- name: Install PNPM
2020
uses: pnpm/action-setup@v4
21+
with:
22+
version: 9.15.9
2123

2224
- name: Sanity Check
2325
shell: bash

.moon/toolchain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ node:
1414

1515
# The version of the package manager (above) to use.
1616
pnpm:
17-
version: '9.15.6'
17+
version: '9.15.9'
1818

1919
# Add `node.version` as a constraint in the root `package.json` `engines`.
2020
addEnginesConstraint: true

.npmrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
22
auth-type=legacy
3+
4+
# pnpm
5+
enable-pre-post-scripts=true
6+
shamefully-hoist=true

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"devDependencies": {
1010
"@dot/versioner": "^0.4.2",
11-
"@moonrepo/cli": "1.30.0",
11+
"@moonrepo/cli": "1.35.0",
1212
"@swc/core": "^1.3.91",
1313
"@swc/helpers": "^0.5.2",
1414
"@types/node": "22.14.1",
@@ -45,7 +45,7 @@
4545
"prettier --write"
4646
]
4747
},
48-
"packageManager": "pnpm@10.8.1",
48+
"packageManager": "pnpm@9.15.9",
4949
"pnpm": {
5050
"overrides": {
5151
"@types/react": "19.1.2",

packages/jsx-email/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
"@unocss/core": "^66.0.0",
6767
"@unocss/preset-rem-to-px": "^66.0.0",
6868
"@unocss/preset-typography": "^66.0.0",
69-
"@unocss/preset-uno": "^66.0.0",
70-
"@unocss/preset-wind": "^66.0.0",
69+
"@unocss/preset-wind3": "^66.0.0",
70+
"@unocss/preset-wind4": "66.1.0-beta.11",
7171
"@unocss/transformer-compile-class": "^66.0.0",
7272
"@unocss/transformer-variant-group": "^66.0.0",
7373
"@vitejs/plugin-react": "^4.3.0",

packages/jsx-email/src/cli/commands/build.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ import type { InferOutput as Infer } from 'valibot';
1212
import { parse as assert, boolean, object, optional, string } from 'valibot';
1313

1414
import { log } from '../../log.js';
15-
import { formatBytes, gmailByteLimit } from '../helpers.mjs';
15+
import { formatBytes, gmailByteLimit } from '../helpers.js';
1616
import { compile } from '../../renderer/compile.js';
1717
import { render } from '../../renderer/render.js';
1818

19-
import type { CommandFn, TemplateFn } from './types.mjs';
19+
import type { CommandFn, TemplateFn } from './types.js';
2020

2121
const BuildCommandOptionsStruct = object({
2222
exclude: optional(string()),

packages/jsx-email/src/cli/commands/check.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import chalk from 'chalk';
55
import chalkTmpl from 'chalk-template';
66
import { parse as assert, object, type InferOutput as Infer } from 'valibot';
77

8-
import { formatBytes, gmailByteLimit, gmailBytesSafe } from '../helpers.mjs';
8+
import { formatBytes, gmailByteLimit, gmailBytesSafe } from '../helpers.js';
99

10-
import { buildTemplates } from './build.mjs';
11-
import { type CommandFn } from './types.mjs';
10+
import { buildTemplates } from './build.js';
11+
import { type CommandFn } from './types.js';
1212

1313
const { error, log } = console;
1414

packages/jsx-email/src/cli/commands/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
type InferOutput as Infer
1414
} from 'valibot';
1515

16-
import { type CommandFn } from './types.mjs';
16+
import { type CommandFn } from './types.js';
1717

1818
// eslint-disable-next-line no-underscore-dangle
1919
const __filename = fileURLToPath(import.meta.url);

packages/jsx-email/src/cli/commands/help.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import chalk from 'chalk-template';
22

33
import { name, version } from '../../package-info.cjs';
44

5-
import type { CommandFn } from './types.mjs';
6-
import { help as build } from './build.mjs';
7-
import { help as check } from './check.mjs';
8-
import { help as create } from './create.mjs';
9-
import { help as preview } from './preview.mjs';
5+
import type { CommandFn } from './types.js';
6+
import { help as build } from './build.js';
7+
import { help as check } from './check.js';
8+
import { help as create } from './create.js';
9+
import { help as preview } from './preview.js';
1010

1111
const { log } = console;
1212

packages/jsx-email/src/cli/commands/preview.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ import { parse as assert } from 'valibot';
1212
import { build as viteBuild, createServer, type InlineConfig } from 'vite';
1313

1414
import { log } from '../../log.js';
15-
import { buildForPreview, writePreviewDataFiles } from '../helpers.mjs';
16-
import { reloadPlugin } from '../vite-reload.mjs';
17-
import { staticPlugin } from '../vite-static.mjs';
18-
import { watch } from '../watcher.mjs';
15+
import { buildForPreview, writePreviewDataFiles } from '../helpers.js';
16+
import { reloadPlugin } from '../vite-reload.js';
17+
import { staticPlugin } from '../vite-static.js';
18+
import { watch } from '../watcher.js';
1919

20-
import { getTempPath } from './build.mjs';
20+
import { getTempPath } from './build.js';
2121
import {
2222
type CommandFn,
2323
type PreviewCommandOptions,
2424
type PreviewCommonParams,
2525
PreviewCommandOptionsStruct
26-
} from './types.mjs';
26+
} from './types.js';
2727

2828
// eslint-disable-next-line no-console
2929
const newline = () => console.log('');

0 commit comments

Comments
 (0)