We are updating our git worklow. Case 1: **URGENT / PATCH** If you want to include something URGENT that cannot wait for the next release, you'll need to: - create a PR from the latest patch (right now v0.30.1) - create a new patch tag from this PR (would be v0.30.2 right now) - merge this PR in main so it's in 0.31 too Case 2: **REGULAR** - Open a PR from main and merge it into main I'm tagging main as v0.31.canary to make it clear!
21 lines
683 B
JSON
21 lines
683 B
JSON
{
|
|
"name": "twenty-website",
|
|
"version": "0.31.canary",
|
|
"private": true,
|
|
"scripts": {
|
|
"nx": "NX_DEFAULT_PROJECT=twenty-website node ../../node_modules/nx/bin/nx.js",
|
|
"dev": "npx next dev",
|
|
"build": "npx next build",
|
|
"start": "npx next start",
|
|
"lint": "npx next lint",
|
|
"github:sync": "npx tsx src/github/github-sync.ts",
|
|
"github:init": "npx tsx src/github/github-sync.ts --isFullSync",
|
|
"database:migrate": "npx tsx src/database/migrate-database.ts",
|
|
"database:generate:pg": "npx drizzle-kit generate:pg --config=src/database/drizzle-posgres.config.ts"
|
|
},
|
|
"dependencies": {
|
|
"next-runtime-env": "^3.2.2",
|
|
"postgres": "^3.4.3"
|
|
}
|
|
}
|