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

feat/injecting scripts from popup #579

Merged
merged 10 commits into from
Jul 20, 2024
Prev Previous commit
Next Next commit
fix: use proper command for build script in package.json
  • Loading branch information
PatrykKuniczak committed Jul 20, 2024
commit 6768b59dd9840c2d70978328b36d3d5566989279
2 changes: 1 addition & 1 deletion pages/content-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"scripts": {
"clean": "rimraf ./dist",
"build": "pnpm run clean && tsc --noEmit && vite build",
"build": "pnpm run clean && pnpm type-check && vite build",
"build:watch": "cross-env __DEV__=true vite build -w --mode development",
"dev": "pnpm build:watch",
"lint": "eslint . --ext .ts,.tsx",
Expand Down