Skip to content

Commit

Permalink
🔄 Changing from index.ts to app.ts to build the packages together wit…
Browse files Browse the repository at this point in the history
…h the core and plugins
  • Loading branch information
Ashu11-A committed Oct 22, 2024
1 parent 9289bb4 commit 8a0de2f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/discord/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "discord",
"version": "1.0.0",
"private": true,
"module": "src/index.ts",
"types": "src/index.ts",
"module": "src/app.ts",
"types": "src/app.ts",
"type": "module",
"scripts": {
"lint": "eslint -c eslint.config.js --fix"
Expand Down
File renamed without changes.
12 changes: 6 additions & 6 deletions packages/socket/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"version": "1.0.0",
"type": "module",
"private": true,
"module": "src/index.ts",
"types": "src/index.ts",
"module": "src/app.ts",
"types": "src/app.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
"types": "./src/app.ts",
"import": "./src/app.ts"
},
"./loader": {
"types": "./src/loaders/index.ts",
"import": "./src/loaders/index.ts"
"types": "./src/loaders/app.ts",
"import": "./src/loaders/app.ts"
}
},
"scripts": {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "utils",
"version": "1.0.0",
"private": true,
"module": "src/index.ts",
"types": "src/index.ts",
"module": "src/app.ts",
"types": "src/app.ts",
"type": "module",
"scripts": {
"lint": "eslint -c eslint.config.js --fix"
Expand Down
File renamed without changes.

0 comments on commit 8a0de2f

Please sign in to comment.