Remove npm_execpath from package.json scripts, remove unused scripts

environments/review-main-yi2y9f/deployments/4836^2
Alex Gleason 2024-09-25 19:34:44 -05:00
rodzic 48c2a405dd
commit cc2b07a9da
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 2 dodań i 4 usunięć

Wyświetl plik

@ -22,15 +22,13 @@
},
"scripts": {
"start": "npx vite serve",
"dev": "${npm_execpath} run start",
"dev": "npx vite serve",
"build": "npx vite build --emptyOutDir",
"preview": "npx vite preview",
"audit:fix": "npx yarn-audit-fix",
"i18n": "npx formatjs extract 'src/**/*.{ts,tsx}' --ignore '**/*.d.ts' --out-file build/messages.json && npx formatjs compile build/messages.json --out-file src/locales/en.json",
"test": "npx vitest",
"test:coverage": "${npm_execpath} run test --coverage",
"test:all": "${npm_execpath} run test:coverage && ${npm_execpath} run lint",
"lint": "${npm_execpath} run lint:js && ${npm_execpath} run lint:sass",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "npx eslint --ext .js,.jsx,.cjs,.mjs,.ts,.tsx . --cache",
"lint:sass": "npx stylelint src/styles/**/*.scss",
"prepare": "husky install"