chore: flarum-cli audit infra --fix

This commit is contained in:
Alexander Skvortsov 2022-01-20 03:06:25 -05:00
parent 8e8c9ba53d
commit e23ac5d51c
3 changed files with 7 additions and 3 deletions

View File

@ -15,6 +15,7 @@ jobs:
enable_typescript: true
frontend_directory: ./js
main_git_branch: main
main_git_branch: master
secrets:
bundlewatch_github_token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}

View File

@ -55,7 +55,8 @@
"editorConfig": true,
"styleci": true,
"admin": true,
"forum": true
"forum": true,
"css": false
}
}
},

View File

@ -9,7 +9,9 @@
"format": "prettier --write src",
"format-check": "prettier --check src",
"check-typings": "tsc --noEmit --emitDeclarationOnly false",
"check-typings-coverage": "typescript-coverage-report"
"check-typings-coverage": "typescript-coverage-report",
"clean-typings": "npx rimraf dist-typings && mkdir dist-typings",
"build-typings": "npm run clean-typings && cp -r src/@types dist-typings/@types && tsc"
},
"devDependencies": {
"@flarum/prettier-config": "^1.0.0",