1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 15:37:51 +02:00

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 enable_typescript: true
frontend_directory: ./js frontend_directory: ./js
main_git_branch: main main_git_branch: master
secrets: secrets:
bundlewatch_github_token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} bundlewatch_github_token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}

View File

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

View File

@@ -9,7 +9,9 @@
"format": "prettier --write src", "format": "prettier --write src",
"format-check": "prettier --check src", "format-check": "prettier --check src",
"check-typings": "tsc --noEmit --emitDeclarationOnly false", "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": { "devDependencies": {
"@flarum/prettier-config": "^1.0.0", "@flarum/prettier-config": "^1.0.0",