Skip to content

Commit

Permalink
chore(js,react): released the first version
Browse files Browse the repository at this point in the history
  • Loading branch information
LetItRock committed Aug 7, 2024
1 parent 3d1efdd commit 9ecd845
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion libs/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@novu/shared",
"version": "2.0.0-canary.0",
"version": "2.0.0-canary.1",
"description": "",
"scripts": {
"start": "npm run start:dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@novu/client",
"version": "2.0.0-canary.0",
"version": "2.0.0-canary.1",
"repository": "https://github.com/novuhq/novu",
"description": "API client to be used in end user environments",
"main": "dist/cjs/index.js",
Expand Down
12 changes: 9 additions & 3 deletions packages/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@novu/js",
"version": "2.0.0-canary.0",
"version": "2.0.0-alpha.2",
"repository": "https://github.com/novuhq/novu",
"description": "Novu's JavaScript SDK for building custom inbox notification experiences",
"author": "",
Expand All @@ -25,10 +25,16 @@
"files": [
"dist/cjs",
"dist/esm",
"dist/types"
"dist/types",
"dist/index.css",
"dist/novu.min.js",
"dist/novu.min.js.gz"
],
"sideEffects": false,
"private": true,
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf ./dist",
"start:server": "http-server ./dist -p 4010",
Expand Down
7 changes: 5 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@novu/react",
"version": "2.0.0-canary.0",
"version": "2.0.0-alpha.2",
"repository": "https://github.com/novuhq/novu",
"description": "Novu's React SDK for building custom inbox notification experiences",
"author": "",
Expand Down Expand Up @@ -30,7 +30,10 @@
"dist/server/**/*"
],
"sideEffects": false,
"private": true,
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build:watch": "tsup --watch",
"build": "tsup",
Expand Down

0 comments on commit 9ecd845

Please sign in to comment.