Skip to content

Commit

Permalink
rename scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhaiwat10 committed Sep 11, 2024
1 parent fb57a62 commit 3dedab6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion apps/create-fuels-counter-guide/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"version": "0.1.0",
"type": "module",
"scripts": {
"test": "vitest",
"test": "run-p test:feat",
"test:all": "run-p test:feat test:unit",
"test:feat": "vitest",
"test:unit": "cd sway-programs && forc test",
"original:dev": "vite",
"original:build": "tsc -b && vite build",
Expand Down
4 changes: 3 additions & 1 deletion templates/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"build": "pnpm run xprebuild && next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test": "run-p test:feat",
"test:all": "run-p test:feat test:unit",
"test:feat": "vitest",
"test:unit": "cd sway-programs && forc test"
},
"dependencies": {
Expand Down
4 changes: 3 additions & 1 deletion templates/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"build": "pnpm run xprebuild && tsc -b && vite build",
"lint": "eslint .",
"fuels:dev": "fuels dev",
"test": "vitest",
"test": "run-p test:feat",
"test:all": "run-p test:feat test:unit",
"test:feat": "vitest",
"test:unit": "cd sway-programs && forc test"
},
"dependencies": {
Expand Down

0 comments on commit 3dedab6

Please sign in to comment.