Skip to content

Commit

Permalink
added changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasmelo1 committed Sep 7, 2024
1 parent 6d7f068 commit c5f4e08
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 8 deletions.
18 changes: 16 additions & 2 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,19 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
"ignore": [
"@examples/with-code-share",
"@examples/with-code-share-shared",
"@examples/with-code-share-server",
"@examples/with-code-share-client",
"@examples/deel-hometask-challenge",
"@examples/next-client-app",
"@examples/server-palmares",
"@examples/server-express-only",
"@examples/next-monorepo",
"@example/basic",
"@examples/bench",
"@example/tests",
"@examples/schemas"
]
}
23 changes: 23 additions & 0 deletions .changeset/cool-kiwis-count.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
'@palmares/eventemitter2-emitter': patch
'@palmares/server-vercel': patch
'@palmares/sequelize-engine': patch
'@palmares/console-logging': patch
'@palmares/express-adapter': patch
'@palmares/drizzle-engine': patch
'@palmares/vercel-adapter': patch
'@palmares/redis-emitter': patch
'@palmares/databases': patch
'@palmares/logging': patch
'@palmares/schemas': patch
'@palmares/jest-tests': patch
'@palmares/zod-schema': patch
'@palmares/client': patch
'@palmares/events': patch
'@palmares/server': patch
'@palmares/tests': patch
'@palmares/node-std': patch
'@palmares/core': patch
---

- Added ESModules support, you can have deeply nested packages and it wont affect the function of your app. For example, if module A has a dependency in @palmares/schema, and palmares schema depends on @palmares/core, it will work normally
4 changes: 2 additions & 2 deletions examples/with-code-share/apps/client/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "client",
"name": "@examples/with-code-share-client",
"private": true,
"version": "0.0.1",
"type": "module",
Expand All @@ -19,7 +19,7 @@
"@tanstack/react-virtual": "^3.10.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shared": "workspace:*"
"@examples/with-code-share-shared": "workspace:*"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
Expand Down
5 changes: 3 additions & 2 deletions examples/with-code-share/apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "server",
"name": "@examples/with-code-share-server",
"version": "1.0.1",
"description": "",
"main": "./dist/manage.js",
"private": true,
"scripts": {
"help": "tsx manage.ts help",
"dev": "tsx watch --clear-screen=false manage.ts runserver",
Expand Down Expand Up @@ -36,7 +37,7 @@
"cors": "^2.8.5",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "^0.32.2",
"shared": "workspace:*"
"@examples/with-code-share-shared": "workspace:*"
},
"devDependencies": {
"@palmares/jest-tests": "^0.1.13",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-code-share/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "with-code-share",
"name": "@examples/with-code-share",
"version": "1.0.0",
"private": true,
"description": "",
Expand Down
3 changes: 2 additions & 1 deletion examples/with-code-share/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "shared",
"name": "@examples/with-code-share-shared",
"version": "1.0.1",
"description": "",
"private": true,
"types": "./src/index.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
Expand Down

0 comments on commit c5f4e08

Please sign in to comment.