aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
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 /scripts
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 'scripts')
-rw-r--r--scripts/create.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/create.js b/scripts/create.js
index e143b00..4939431 100644
--- a/scripts/create.js
+++ b/scripts/create.js
@@ -6,13 +6,13 @@ const path = require('path');
6const open = require('open'); 6const open = require('open');
7 7
8if (process.argv.length < 3) { 8if (process.argv.length < 3) {
9 console.log(`Usage: pnpm run create <Recipe name> [Folder name] 9 console.log(`Usage: pnpm create <Recipe name> [Folder name]
10For example: 10For example:
11pnpm run create WhatsApp 11pnpm create WhatsApp
12pnpm run create "Google Hangouts" 12pnpm create "Google Hangouts"
13You can set "Folder name" to "FerdiDev" to use Ferdium's development instance instead: 13You can set "Folder name" to "FerdiDev" to use Ferdium's development instance instead:
14 14
15pnpm run create WhatsApp FerdiDev 15pnpm create WhatsApp FerdiDev
16`); 16`);
17 throw new Error('Please provide the correct number of args!'); 17 throw new Error('Please provide the correct number of args!');
18} 18}