-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(root): Release version
2.1.0
for all applications (#7142)
- Loading branch information
Showing
26 changed files
with
143 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,5 @@ | |
"message": "chore(release): publish - ci skip" | ||
} | ||
}, | ||
"version": "2.0.1" | ||
"version": "2.1.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"build:dashboard": "nx build @novu/dashboard", | ||
"build:embed": "nx build @novu/embed", | ||
"build:inbound-mail": "nx build @novu/inbound-mail", | ||
"build:packages": "nx run-many --target=build --all --projects=tag:package:public", | ||
"build:packages": "nx run-many --target=build --all --projects=tag:type:package", | ||
"build:storybook": "nx run @novu/design-system:build-storybook", | ||
"build:web:for-dashboard": "nx build:web:for-dashboard @novu/web", | ||
"build:web": "nx build @novu/web", | ||
|
@@ -39,9 +39,10 @@ | |
"pnpm-context": "node scripts/pnpm-context.mjs", | ||
"prebuild": "nx run-many --target=prebuild --all", | ||
"preinstall": "npx only-allow pnpm", | ||
"preview:pkg:build": "nx affected -t build --base=origin/next --head=HEAD --exclude='*,!tag:package:public'", | ||
"preview:pkg:build": "nx affected -t build --base=origin/next --head=HEAD --exclude='*,!tag:type:package'", | ||
"preview:pkg:publish": "node scripts/publish-preview-packages.mjs", | ||
"release": "node scripts/release.mjs", | ||
"release:version:apps": "nx release version --projects=tag:type:app", | ||
"setup:project": "npx --yes [email protected] i && node scripts/setup-env-files.js && pnpm build", | ||
"start:api:dev": "cross-env nx run @novu/api:start:dev", | ||
"start:api:test": "cross-env nx run-many --target=start:test --projects=@novu/api", | ||
|
@@ -83,12 +84,11 @@ | |
"@eslint/compat": "^1.1.1", | ||
"@eslint/eslintrc": "^3.1.0", | ||
"@eslint/js": "^9.9.1", | ||
"nx": "20.1.2", | ||
"@nx/eslint": "20.1.2", | ||
"@nx/eslint-plugin": "20.1.2", | ||
"@nx/jest": "20.1.2", | ||
"@nx/eslint": "20.1.2", | ||
"@nx/workspace": "20.1.2", | ||
"@nx/plugin": "20.1.2", | ||
"@nx/workspace": "20.1.2", | ||
"@octokit/core": "^4.0.0", | ||
"@pandacss/eslint-plugin": "^0.1.9", | ||
"@pnpm/filter-workspace-packages": "^7.0.6", | ||
|
@@ -168,6 +168,8 @@ | |
"markdownlint-cli": "^0.33.0", | ||
"meow": "^10.1.3", | ||
"mississippi": "^4.0.0", | ||
"nx": "20.1.2", | ||
"nx-cloud": "19.1.0", | ||
"ora": "~5.4.1", | ||
"pkg-pr-new": "^0.0.24", | ||
"pnpm": "9.11.0", | ||
|
@@ -182,7 +184,7 @@ | |
"typescript": "5.6.2", | ||
"typescript-eslint": "^8.3.0", | ||
"wait-port": "^0.3.0", | ||
"nx-cloud": "19.1.0" | ||
"yargs": "^17.7.2" | ||
}, | ||
"workspaces": { | ||
"packages": [ | ||
|
@@ -239,6 +241,6 @@ | |
"@types/mocha": "^10.0.8", | ||
"rollup@>=4.0.0 <4.22.4": "^4.22.4", | ||
"@nestjs/common@>=10.0.0 <11.0.0": "10.4.1" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -244,7 +244,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,7 +138,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,7 +94,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,7 +92,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,7 +114,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
}, | ||
"nx": { | ||
"tags": [ | ||
"package:public" | ||
"type:package" | ||
] | ||
} | ||
} |
Oops, something went wrong.