Skip to content

Commit

Permalink
[version] 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leomerida15 committed Feb 2, 2024
1 parent aa5f3c8 commit 2cec1a6
Show file tree
Hide file tree
Showing 16 changed files with 1,481 additions and 1,164 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.defaultFormatter": "rome.rome",
"editor.defaultFormatter": "biomejs.biome",
"editor.cursorBlinking": "phase",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
// Enable per-language
"[typescript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "rome.rome",
"editor.defaultFormatter": "biomejs.biome",
},
"material-icon-theme.activeIconPack": "react_redux",
"material-icon-theme.hidesExplorerArrows": false,
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

This package is intended to make it easy to build back-end applications in the framework, **next.js** with, using the **app** directory.

> **Note 🧪:** ***"Version compatible Next.js v14.0.0"*** Due to the sudden changes that next.js has in its internal functioning, we will leave here the most modern version with full compatibility with the next-rocket-kit

# Index

Expand Down Expand Up @@ -104,6 +103,8 @@ This tool helps to quickly create an endpoint using the **next.js** **API** fold

- req.getHeaders(): return headers.

- req.getState(): return native NextRequest methods.

- reply: used to reply to the client and gives access to all the native methods of **NextResponse**.

- context (The native context of **nextjs**)
Expand Down
16 changes: 16 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off",
"noConfusingVoidType": "off"
}
}
}
}
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "1.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -56,16 +56,18 @@
}
],
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@jest/types": "^29.6.3",
"@prisma/client": "^5.8.1",
"@size-limit/preset-small-lib": "^8.2.6",
"@types/jest": "^29.5.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.0",
"babel-loader": "^9.1.3",
"babel-preset-react": "^6.24.1",
"husky": "^8.0.3",
"next": "^13.5.5",
"rome": "^12.1.3",
"next": "^14.1.0",
"prisma": "^5.8.1",
"size-limit": "^8.2.6",
"tsdx": "^0.14.1",
"tslib": "^2.6.2",
Expand Down
Loading

0 comments on commit 2cec1a6

Please sign in to comment.