aboutsummaryrefslogtreecommitdiffstats
path: root/docs/integration.md
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-23 08:25:24 -0500
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-23 08:25:24 -0500
commit7a28603912fc705f6ff3ea9e0fa4d22d96ca99a4 (patch)
tree16b255f0e57af69aa5c55c9c1201b44d0c62e60c /docs/integration.md
parentbuild: add pnpm version to package.json#engines (diff)
downloadferdium-recipes-7a28603912fc705f6ff3ea9e0fa4d22d96ca99a4.tar.gz
ferdium-recipes-7a28603912fc705f6ff3ea9e0fa4d22d96ca99a4.tar.zst
ferdium-recipes-7a28603912fc705f6ff3ea9e0fa4d22d96ca99a4.zip
Use 'pnpm' instead of 'pnpm run'
Diffstat (limited to 'docs/integration.md')
-rw-r--r--docs/integration.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/integration.md b/docs/integration.md
index 87ffb40..c31e767 100644
--- a/docs/integration.md
+++ b/docs/integration.md
@@ -45,15 +45,15 @@ pnpm i
45 45
46```Bash 46```Bash
47# Make sure you are still in the repository's folder 47# Make sure you are still in the repository's folder
48pnpm run create "Service Name" 48pnpm create "Service Name"
49``` 49```
50 50
51Replace `Service Name` with the name of your service, e.g. `pnpm run create "Google Hangouts"`. 51Replace `Service Name` with the name of your service, e.g. `pnpm create "Google Hangouts"`.
52This command will automatically create the development recipe in the correct folder, prepares it for your service and opens the new recipe in your file explorer or Finder. 5. Reload Ferdium (`CMD/CTRL + SHIFT + R`) in order for it to register the new recipe 6. You can now develop your recipe as described below. Please continue down below with "[Publishing](#Publishing)" after you are done creating your recipe. 52This command will automatically create the development recipe in the correct folder, prepares it for your service and opens the new recipe in your file explorer or Finder. 5. Reload Ferdium (`CMD/CTRL + SHIFT + R`) in order for it to register the new recipe 6. You can now develop your recipe as described below. Please continue down below with "[Publishing](#Publishing)" after you are done creating your recipe.
53 53
545. (Mandatory) Please run the following step before raising a PR: 545. (Mandatory) Please run the following step before raising a PR:
55```Bash 55```Bash
56pnpm run package 56pnpm package
57``` 57```
58Fix any issues that are reported. 58Fix any issues that are reported.
59 59