This commit is contained in:
John Whitlock 2024-02-29 16:54:35 -06:00
Родитель 5975fbefa9
Коммит c7daae5a6b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 082C735D154FB750
3 изменённых файлов: 3 добавлений и 3 удалений

0
frontend/.husky/pre-commit → .husky/pre-commit Executable file → Normal file
Просмотреть файл

Просмотреть файл

@ -14,8 +14,7 @@
"lint": "stylelint '**/*.scss' && prettier --check './src' && next lint",
"licensecheck": "license-checker --excludePrivatePackages --production --onlyAllow 'MPL; MIT; BSD-3-Clause; BSD-2-Clause; 0BSD; Apache-2.0; ISC; Zlib; CC0; Unlicense; WTFPL; Unicode-DFS-2016;'",
"test": "jest",
"postinstall": "msw init public/ --save",
"prepare": "if [ \"$ON_HEROKU\" != \"True\" ]; then cd .. && husky install frontend/.husky; fi"
"postinstall": "msw init public/ --save"
},
"dependencies": {
"@fluent/bundle": "^0.18.0",

Просмотреть файл

@ -30,7 +30,8 @@
"test:stage": "E2E_TEST_ENV=stage playwright test --retries=2",
"test:prod": "E2E_TEST_ENV=prod playwright test --retries=2",
"heroku-prebuild": "printf '{\"commit\":\"%s\", \"commit_link\":\"https://github.com/mozilla/fx-private-relay/commit/%s\"}\n' \"$SOURCE_VERSION\" \"$SOURCE_VERSION\" > version.json",
"heroku-postbuild": "cd frontend; NODE_ENV=\"development\" npm ci; npm run build"
"heroku-postbuild": "cd frontend; NODE_ENV=\"development\" npm ci; npm run build",
"prepare": "husky"
},
"homepage": "https://github.com/mozilla/fx-private-relay#readme"
}