Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(slides): add npm scripts to package.json #1699

Merged
merged 2 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore(slides): add npm scripts to package.json
  • Loading branch information
jikkai committed Mar 26, 2024
commit 7654cf399c80200b0a787ab00db49a6584a52037
8 changes: 7 additions & 1 deletion packages/slides-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint:types": "tsc --noEmit",
"build": "tsc && vite build"
},
"peerDependencies": {
"@univerjs/core": "workspace:*",
"@univerjs/design": "workspace:*",
Expand Down
13 changes: 9 additions & 4 deletions packages/slides/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,25 @@
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint:types": "tsc --noEmit",
"build": "tsc && vite build"
},
"peerDependencies": {
"@univerjs/core": "workspace:*",
"@univerjs/engine-render": "workspace:*",
"@univerjs/ui": "workspace:*",
"@wendellhu/redi": "^0.13.0"
"@wendellhu/redi": "0.13.0",
"rxjs": ">=7.0.0"
},
"dependencies": {},
"devDependencies": {
"@univerjs/core": "workspace:*",
"@univerjs/engine-render": "workspace:*",
"@univerjs/shared": "workspace:*",
"@wendellhu/redi": "^0.13.0",
"less": "^4.2.0",
"rxjs": "^7.8.1",
"typescript": "^5.4.2",
"vite": "^5.1.6",
Expand Down
Loading