Skip to content

Commit

Permalink
chore(media-tracks): update dev command
Browse files Browse the repository at this point in the history
  • Loading branch information
luwes committed May 8, 2024
1 parent bd67f76 commit 5fbe8f5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"scripts": {
"lint": "turbo lint",
"test": "turbo test --concurrency=1",
"dev": "turbo run dev --concurrency=20 --filter '!./examples/*'",
"build": "turbo build"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/media-tracks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"pretest": "npm run build -- --sourcemap=inline",
"test": "npm run test:types && wet test --coverage",
"test:types": "tsc test/test.js --module nodenext --moduleResolution nodenext --target esnext --noEmit --allowJs",
"dev": "tsc -w & esbuild src/*.ts --format=esm --outdir=dist --servedir=. --watch=forever",
"dev": "tsc -w & esbuild src/*.ts --format=esm --outdir=dist --watch=forever",
"build": "rm -rf dist && esbuild src/*.ts --format=esm --outdir=dist",
"postbuild": "tsc"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/media-tracks/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"outDir": "dist",
"declaration": true,
"emitDeclarationOnly": true,
"strict": true
"strict": true,
"preserveWatchOutput": true
}
}

0 comments on commit 5fbe8f5

Please sign in to comment.