Skip to content

Commit

Permalink
chore: Update version for release (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 12, 2024
1 parent 4da764f commit d5d9e7b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 20 deletions.
17 changes: 0 additions & 17 deletions .changeset/seven-cars-mate.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"@fastify/static": "^7.0.3",
"@mcansh/remix-fastify": "3.3.2",
"@mcansh/remix-fastify": "3.3.3",
"@remix-run/css-bundle": "*",
"@remix-run/node": "*",
"@remix-run/react": "*",
Expand Down
2 changes: 1 addition & 1 deletion examples/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"@fastify/middie": "^8.3.0",
"@fastify/static": "^7.0.3",
"@mcansh/remix-fastify": "3.3.2",
"@mcansh/remix-fastify": "3.3.3",
"@remix-run/node": "*",
"@remix-run/react": "*",
"cross-env": "^7.0.3",
Expand Down
18 changes: 18 additions & 0 deletions packages/remix-fastify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @mcansh/remix-fastify

## 3.3.3

### Patch Changes

- be05e8b: The Remix Vite plugin allows you to customize the filename. This change allows you to pass a custom server file name to the Fastify plugin

```js vite.config.ts
export default defineConfig({
plugins: [remix({ serverFilename: "example.js" })],
});
```

```js server.js
await app.register(remixFastify, {
serverFilename: "example.js",
});
```

## 3.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/remix-fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mcansh/remix-fastify",
"version": "3.3.2",
"version": "3.3.3",
"description": "Fastify server request handler for Remix",
"repository": "mcansh/remix-fastify",
"license": "MIT",
Expand Down

0 comments on commit d5d9e7b

Please sign in to comment.