Skip to content

Commit

Permalink
Last prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
cregourd committed Nov 13, 2024
1 parent 981f7b4 commit 2312b13
Show file tree
Hide file tree
Showing 13 changed files with 67 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .changeset/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const getDependencyReleaseLine = async (

const changesetLinks = changesets.map(
(changeset) => {
const commitShortId = changeset.commit.slice(0, 7);
const commitShortId = changeset.commit?.slice(0, 7);
const commitLink = options?.repo ? `[${commitShortId}](https://github.com/${options.repo}/commit/${changeset.commit})` : commitShortId;
return `- Updated dependencies${changeset.commit ? ` [${commitLink}]` : ""
}`;
Expand Down
8 changes: 8 additions & 0 deletions .changeset/giant-terms-march.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@premieroctet/next-admin-generator-prisma": patch
"@premieroctet/next-admin-json-schema": patch
"@premieroctet/next-admin": patch
"@premieroctet/next-admin-cli": patch
---

Fix generator
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"cool-meals-obey",
"fifty-chairs-travel",
"four-comics-deny",
"giant-terms-march",
"lemon-bears-attend",
"nasty-clouds-deny",
"sour-garlics-dress"
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"clean": "turbo run clean"
},
"devDependencies": {
"changeset": "^0.2.6",
"dotenv-cli": "7.2.1",
"eslint-config-custom": "workspace:*",
"playwright": "^1.48.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @premieroctet/next-admin-cli

## 0.0.5-rc.3

### Patch Changes

- Fix generator

## 0.0.5-rc.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@premieroctet/next-admin-cli",
"version": "0.0.5-rc.2",
"version": "0.0.5-rc.3",
"description": "CLI for Next-Admin, an admin dashboard for Next.js applications.",
"bin": "dist/index.js",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions packages/generator-prisma/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @premieroctet/next-admin-generator-prisma

## 0.0.1-rc.6

### Patch Changes

- Fix generator
- Updated dependencies
- @premieroctet/next-admin-json-schema@0.0.1-rc.3

## 0.0.1-rc.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/generator-prisma/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@premieroctet/next-admin-generator-prisma",
"version": "0.0.1-rc.5",
"version": "0.0.1-rc.6",
"description": "Prisma generator for Next-Admin",
"bin": "dist/index.js",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/json-schema/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @premieroctet/next-admin-json-schema

## 0.0.1-rc.3

### Patch Changes

- Fix generator

## 0.0.1-rc.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/json-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@premieroctet/next-admin-json-schema",
"version": "0.0.1-rc.2",
"version": "0.0.1-rc.3",
"description": "JSON Schema helpers for Next-Admin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/next-admin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @premieroctet/next-admin

## 7.0.0-rc.3

### Patch Changes

- Fix generator

## 7.0.0-rc.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/next-admin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@premieroctet/next-admin",
"version": "7.0.0-rc.2",
"version": "7.0.0-rc.3",
"description": "Next-Admin provides a customizable and turnkey admin dashboard for applications built with Next.js and powered by the Prisma ORM. It aims to simplify the development process by providing a turnkey admin system that can be easily integrated into your project.",
"keywords": [
"next.js",
Expand Down
31 changes: 26 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2312b13

Please sign in to comment.