Skip to content

Commit 3608320

Browse files
committed
Bump to 4.0.0-alpha.1
1 parent 1fd74d9 commit 3608320

File tree

12 files changed

+39
-11
lines changed

12 files changed

+39
-11
lines changed

.changeset/pre.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,10 @@
4141
"@react-email/text": "0.0.11",
4242
"tsconfig": "0.0.0"
4343
},
44-
"changesets": ["empty-rivers-laugh"]
44+
"changesets": [
45+
"angry-bugs-sing",
46+
"empty-rivers-laugh",
47+
"loud-clouds-wink",
48+
"spicy-beds-explain"
49+
]
4550
}

.changeset/spicy-beds-explain.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"react-email-starter": major
3+
"react-email": minor
4+
---
5+
6+
Added image checker and preview view resizing

packages/create-email/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# create-email
22

3+
## 1.0.0-alpha.0
4+
35
## 0.1.10
46

57
## 0.1.9

packages/create-email/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-email",
3-
"version": "0.1.10",
3+
"version": "1.0.0-alpha.0",
44
"description": "The easiest way to get started with React Email",
55
"main": "src/index.js",
66
"type": "module",

packages/create-email/template/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# react-email-starter
22

3+
## 1.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
8+
39
## 0.1.10
410

511
### Patch Changes

packages/create-email/template/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-email-starter",
3-
"version": "0.1.10",
3+
"version": "1.0.0-alpha.0",
44
"private": true,
55
"scripts": {
66
"build": "email build",
@@ -15,6 +15,6 @@
1515
"devDependencies": {
1616
"@types/react": "19.0.1",
1717
"@types/react-dom": "19.0.1",
18-
"react-email": "workspace:4.0.0-alpha.0"
18+
"react-email": "workspace:4.0.0-alpha.1"
1919
}
2020
}

packages/react-email/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# react-email
22

3+
## 4.0.0-alpha.1
4+
5+
### Minor Changes
6+
7+
- c77f635: Add image validation checking
8+
- Added image checker and preview view resizing
9+
10+
### Patch Changes
11+
12+
- 498e816: Fix padding on the file tree
13+
314
## 4.0.0-alpha.0
415

516
### Major Changes

packages/react-email/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-email",
3-
"version": "4.0.0-alpha.0",
3+
"version": "4.0.0-alpha.1",
44
"description": "A live preview of your emails right in your browser.",
55
"bin": {
66
"email": "./dist/cli/index.js"

packages/react-email/src/components/button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'use client';
2+
import { DotLottieReact } from '@lottiefiles/dotlottie-react';
23
import * as SlotPrimitive from '@radix-ui/react-slot';
34
import type * as React from 'react';
45
import animatedLoadIcon from '../animated-icons-data/load.json';
56
import { cn } from '../utils/cn';
67
import { unreachable } from '../utils/unreachable';
7-
import { DotLottieReact } from '@lottiefiles/dotlottie-react';
88

99
type RootProps = React.ComponentProps<'button'>;
1010

packages/react-email/src/components/sidebar/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'use client';
22

3+
import { DotLottieReact } from '@lottiefiles/dotlottie-react';
34
import * as Tabs from '@radix-ui/react-tabs';
45
import { clsx } from 'clsx';
56
import { motion } from 'framer-motion';
67
import Link from 'next/link';
7-
import { DotLottieReact } from '@lottiefiles/dotlottie-react';
88
import { usePathname, useRouter, useSearchParams } from 'next/navigation';
99
import type * as React from 'react';
1010
import animatedHelpIcon from '../../animated-icons-data/help.json';

0 commit comments

Comments
 (0)