-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: votes always visible to poll author (#103)
* feat: votes always visible to poll author * Apply fixes from StyleCI --------- Co-authored-by: StyleCI Bot <[email protected]>
- Loading branch information
1 parent
de5680c
commit 9775b97
Showing
6 changed files
with
384 additions
and
419 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"name": "@fof/polls", | ||
"private": true, | ||
"version": "0.0.0", | ||
"devDependencies": { | ||
"flarum-webpack-config": "^2.0.2", | ||
"webpack": "^5.95.0", | ||
"webpack-cli": "^5.1.4", | ||
"prettier": "^3.3.3", | ||
"@flarum/prettier-config": "^1.0.0", | ||
"flarum-tsconfig": "^1.0.3", | ||
"typescript": "^4.5.4", | ||
"typescript-coverage-report": "^0.6.1" | ||
}, | ||
"scripts": { | ||
"dev": "webpack --mode development --watch", | ||
"build": "webpack --mode production", | ||
"analyze": "cross-env ANALYZER=true npm run build", | ||
"format": "prettier --write src", | ||
"format-check": "prettier --check src", | ||
"clean-typings": "npx rimraf dist-typings && mkdir dist-typings", | ||
"build-typings": "npm run clean-typings && ([ -e src/@types ] && cp -r src/@types dist-typings/@types || true) && tsc && npm run post-build-typings", | ||
"post-build-typings": "find dist-typings -type f -name '*.d.ts' -print0 | xargs -0 sed -i 's,../src/@types,@types,g'", | ||
"check-typings": "tsc --noEmit --emitDeclarationOnly false", | ||
"check-typings-coverage": "typescript-coverage-report" | ||
}, | ||
"prettier": "@flarum/prettier-config" | ||
"name": "@fof/polls", | ||
"private": true, | ||
"version": "0.0.0", | ||
"devDependencies": { | ||
"@flarum/prettier-config": "^1.0.0", | ||
"flarum-tsconfig": "^1.0.3", | ||
"flarum-webpack-config": "^2.0.2", | ||
"prettier": "^3.3.3", | ||
"typescript": "^4.5.4", | ||
"typescript-coverage-report": "^0.6.1", | ||
"webpack": "^5.95.0", | ||
"webpack-cli": "^5.1.4" | ||
}, | ||
"scripts": { | ||
"dev": "webpack --mode development --watch", | ||
"build": "webpack --mode production", | ||
"analyze": "cross-env ANALYZER=true npm run build", | ||
"format": "prettier --write src", | ||
"format-check": "prettier --check src", | ||
"clean-typings": "npx rimraf dist-typings && mkdir dist-typings", | ||
"build-typings": "npm run clean-typings && ([ -e src/@types ] && cp -r src/@types dist-typings/@types || true) && tsc && npm run post-build-typings", | ||
"post-build-typings": "find dist-typings -type f -name '*.d.ts' -print0 | xargs -0 sed -i 's,../src/@types,@types,g'", | ||
"check-typings": "tsc --noEmit --emitDeclarationOnly false", | ||
"check-typings-coverage": "typescript-coverage-report" | ||
}, | ||
"prettier": "@flarum/prettier-config" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.