mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-30 03:43:02 +03:00
1e4ed1e96f
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!
17 lines
296 B
JSON
17 lines
296 B
JSON
{
|
|
"name": "twenty-ui",
|
|
"version": "0.31.canary",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "npx vite build"
|
|
}
|
|
}
|