Skip to content

Commit b917457

Browse files
authored
chore: lib updates (#4)
1 parent 23e66b6 commit b917457

File tree

4 files changed

+382
-407
lines changed

4 files changed

+382
-407
lines changed

package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
"name": "@nextorders/queue-monorepo",
33
"version": "0.3.0",
44
"private": true,
5-
"packageManager": "pnpm@10.18.0",
5+
"packageManager": "pnpm@10.18.3",
66
"license": "MIT",
77
"repository": {
88
"type": "git",
99
"url": "git+https://github.com/nextorders/queue.git"
1010
},
1111
"engines": {
1212
"node": ">=22.18.0",
13-
"pnpm": ">=10.18.0"
13+
"pnpm": ">=10.18.3"
1414
},
1515
"scripts": {
1616
"build": "pnpm -r run build",
17-
"build:types": "vue-tsc --emitDeclarationOnly",
17+
"build:types": "tsc --emitDeclarationOnly",
1818
"release": "bumpp --execute=\"npm run release:prepare\" --recursive",
1919
"release:prepare": "npm run build:types",
2020
"lint": "eslint .",
@@ -39,12 +39,8 @@
3939
"husky": "catalog:dev",
4040
"lint-staged": "catalog:dev",
4141
"playwright": "catalog:test",
42-
"tsx": "catalog:dev",
4342
"typescript": "catalog:dev",
44-
"vite": "catalog:dev",
45-
"vitest": "catalog:test",
46-
"vitest-browser-vue": "catalog:test",
47-
"vue-tsc": "catalog:dev"
43+
"vitest": "catalog:test"
4844
},
4945
"lint-staged": {
5046
"*.{js,ts,tsx,vue,md,json}": [

packages/queue/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
"exports": {
2121
".": {
2222
"types": "./dist/index.d.ts",
23-
"import": "./dist/index.mjs",
24-
"require": "./dist/index.mjs"
23+
"import": "./dist/index.mjs"
2524
},
2625
"./package.json": "./package.json",
2726
"./README.md": "./README.md"
@@ -33,7 +32,9 @@
3332
"scripts": {
3433
"build": "unbuild",
3534
"prepack": "pnpm run build",
36-
"typecheck": "tsc --noEmit"
35+
"typecheck": "tsc --noEmit",
36+
"clean": "rm -rf dist",
37+
"clean:modules": "rm -rf dist node_modules"
3738
},
3839
"dependencies": {
3940
"rabbitmq-client": "5.0.5"

0 commit comments

Comments
 (0)