Skip to content

Commit

Permalink
fix(*): test command prebuild core package (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
minuukang authored Nov 20, 2024
1 parent ca5bdfc commit 0367d4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _templates/packages/router/package.json.t
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ to: packages/<%= name %>/package.json
"package.json"
],
"scripts": {
"test": "vitest run",
"test": "pnpm --filter \"@use-funnel/core\" build && vitest run",
"test:unit": "vitest --root test/",
"build": "rimraf dist && concurrently \"pnpm:build:*\"",
"build:dist": "tsup",
Expand Down
2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"package.json"
],
"scripts": {
"test": "vitest run",
"test": "pnpm --filter \"@use-funnel/core\" build && vitest run",
"test:unit": "vitest --root test/",
"build": "rimraf dist && concurrently \"pnpm:build:*\"",
"build:dist": "tsup",
Expand Down
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"index.d.ts"
],
"scripts": {
"test": "vitest run",
"test": "pnpm --filter \"@use-funnel/core\" build && vitest run",
"test:watch": "vitest watch",
"test:unit": "vitest --root test/",
"build": "rimraf dist && concurrently \"pnpm:build:*\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-navigation-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"package.json"
],
"scripts": {
"test": "jest .",
"test": "pnpm --filter \"@use-funnel/core\" build && jest .",
"build": "rimraf dist && concurrently \"pnpm:build:*\"",
"build:dist": "tsup",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-router-dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"package.json"
],
"scripts": {
"test": "vitest run",
"test": "pnpm --filter \"@use-funnel/core\" build && vitest run",
"test:unit": "vitest --root test/",
"build": "rimraf dist && concurrently \"pnpm:build:*\"",
"build:dist": "tsup",
Expand Down

0 comments on commit 0367d4a

Please sign in to comment.