aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-16 21:30:10 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-16 21:30:10 +0200
commite63a7dcb78e5ec122586038352ece48fc8d149d5 (patch)
tree5d983407ac7ce1818980541cbff8af6839620fca
parentAdd #39 to feature list (diff)
downloadferdium-app-e63a7dcb78e5ec122586038352ece48fc8d149d5.tar.gz
ferdium-app-e63a7dcb78e5ec122586038352ece48fc8d149d5.tar.zst
ferdium-app-e63a7dcb78e5ec122586038352ece48fc8d149d5.zip
Add "npm run prepare-code" command
-rw-r--r--README.md1
-rw-r--r--package.json3
2 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 65866ffa4..e4cdd9bdb 100644
--- a/README.md
+++ b/README.md
@@ -26,6 +26,7 @@ You can find the installers in the [latest release](https://github.com/kytwb/fer
26- [x] [Add option to change server to a custom](https://github.com/kytwb/ferdi/wiki/Custom-Server) [ferdi-server](https://github.com/vantezzen/ferdi-server) 26- [x] [Add option to change server to a custom](https://github.com/kytwb/ferdi/wiki/Custom-Server) [ferdi-server](https://github.com/vantezzen/ferdi-server)
27- [x] Add "Private Notification"-Mode, that hides message content from notifications (as suggested in [meetfranz/franz#879](https://github.com/meetfranz/franz/issues/879)) 27- [x] Add "Private Notification"-Mode, that hides message content from notifications (as suggested in [meetfranz/franz#879](https://github.com/meetfranz/franz/issues/879))
28- [x] [Add CTRL+← and CTRL+→ shortcuts and menu options to go back and forward in the service browsing history](https://github.com/kytwb/ferdi/issues/39) 28- [x] [Add CTRL+← and CTRL+→ shortcuts and menu options to go back and forward in the service browsing history](https://github.com/kytwb/ferdi/issues/39)
29- [x] Add "npm run prepare-code" command for development to lint and beautify code
29- [x] Remove "Franz is better together" popup 30- [x] Remove "Franz is better together" popup
30- [x] [Makes it possible to edit the "Franz Todo" server](https://github.com/kytwb/ferdi/wiki/Custom-Todo) 31- [x] [Makes it possible to edit the "Franz Todo" server](https://github.com/kytwb/ferdi/wiki/Custom-Todo)
31- [x] Makes RocketChat self-hosted generally available 32- [x] Makes RocketChat self-hosted generally available
diff --git a/package.json b/package.json
index 27ee107d4..50c3003ff 100644
--- a/package.json
+++ b/package.json
@@ -29,7 +29,8 @@
29 "reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write --require-pragma \"**/*.{js,jsx,scss}\"", 29 "reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write --require-pragma \"**/*.{js,jsx,scss}\"",
30 "packages": "npx lerna publish --no-git-tag-version", 30 "packages": "npx lerna publish --no-git-tag-version",
31 "uidev": "cd uidev && webpack-dev-server", 31 "uidev": "cd uidev && webpack-dev-server",
32 "postinstall": "npx lerna run prepare" 32 "postinstall": "npx lerna run prepare",
33 "prepare-code": "npm run lint && npm run reformat-files && npm run manage-translations"
33 }, 34 },
34 "keywords": [], 35 "keywords": [],
35 "author": "Amine Mouafik <amine@mouafik.fr>", 36 "author": "Amine Mouafik <amine@mouafik.fr>",