Skip to content

Commit 1526629

Browse files
Merge pull request #191 from MacPaw/master
Release
2 parents d405194 + a98fb8f commit 1526629

25 files changed

+4726
-5072
lines changed

.changeset/yummy-moose-draw.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@macpaw/macpaw-ui": major
3+
---
4+
5+
- Migration to React 19
6+
- updated major dependencies to latest version
7+
- fixed all known vulnerabilities

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,10 @@ out
2020
**/.vscode/*
2121

2222
# GPG key
23-
.gpg
23+
.gpg
24+
25+
**/*.tsbuildinfo
26+
27+
# Claude
28+
.claude
29+
CLAUDE.md

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ import '@macpaw/macpaw-ui/lib/ui.css';
3636

3737
- Node 20+
3838
- npm 7+ (lock file v2)
39+
- React 17.0.0 or higher (supports React 17, 18, and 19)
3940

4041
## Library Release Process
4142

next-env.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
/// <reference path="./.next/types/routes.d.ts" />
34

45
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
6+
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ const withMDX = require('@next/mdx')({
66
module.exports = withMDX({
77
pageExtensions: ['js', 'md', 'mdx'],
88
trailingSlash: true,
9+
output: 'export',
910
});

0 commit comments

Comments
 (0)