Skip to content

Commit 62b6bd9

Browse files
chrbrtcbrutscher
andauthored
Added path to toolbelt index (#243)
* added path to toolbelt index * changed other occurances * adjusted tasks.json --------- Co-authored-by: cbrutscher <cbrutscher@liveperson.com>
1 parent e6c3b68 commit 62b6bd9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Liveperson Functions is currently in a transitory state towards v2. To make migr
66
If you want to use both versions of the CLI simultaniously
77

88
```
9-
# Install v2.0.2-beta
10-
> npm install -g liveperson-functions-cli@2.0.2-beta
9+
# Install v2.0.3-beta
10+
> npm install -g liveperson-functions-cli@2.0.3-beta
1111
1212
# Symlink the command to rename it to lpf2
1313
> sudo mv "$(which lpf)" "$(dirname $(which lpf))/lpf2"

bin/example/bin/core-functions-toolbelt/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "core-functions-toolbelt",
3-
"version": "2.0.2-beta",
3+
"version": "2.0.3-beta",
44
"description": "",
5-
"main": "index.js",
5+
"main": "core-functions-toolbelt/index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
88
},

bin/example/vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"tasks": [
44
{
55
"label": "Debug Function",
6-
"command": "node ${cwd}/bin/faas-debugger.js ${input:Function}",
6+
"command": "lpf debug ${input:Function}",
77
"type": "shell",
88
"args": [],
99
"isBackground": true,

oclif.manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,5 +825,5 @@
825825
]
826826
}
827827
},
828-
"version": "2.0.2-beta"
828+
"version": "2.0.3-beta"
829829
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "liveperson-functions-cli",
33
"description": "LivePerson Functions CLI",
4-
"version": "2.0.2-beta",
4+
"version": "2.0.3-beta",
55
"author": {
66
"name": "LivePersonInc",
77
"email": "faas-lp@liveperson.com"

test/commands/invoke/invoke.steps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ defineFeature(feature, (test) => {
344344
'utf8',
345345
),
346346
);
347-
expect(toolbeltPackage.version).toBe('2.0.2-beta');
347+
expect(toolbeltPackage.version).toBe('2.0.3-beta');
348348
});
349349

350350
then(

0 commit comments

Comments
 (0)