Skip to content

Commit 4eb3f9d

Browse files
committed
-
1 parent b68c9ab commit 4eb3f9d

43 files changed

Lines changed: 160 additions & 24 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/eleven-yaks-visit.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@pipelab/shared": patch
3+
"@pipelab/ui": patch
4+
---
5+
6+
fix slashes

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"chatty-ways-happen",
3939
"cute-chicken-hunt",
4040
"eighty-sites-drop",
41+
"eleven-yaks-visit",
4142
"fair-lights-jump",
4243
"fast-ghosts-like",
4344
"free-animals-bet",

apps/cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pipelab/cli
22

3+
## 2.0.0-beta.26
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @pipelab/shared@1.0.0-beta.22
9+
- @pipelab/core-node@1.0.0-beta.26
10+
311
## 2.0.0-beta.25
412

513
### Patch Changes

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipelab/cli",
3-
"version": "2.0.0-beta.25",
3+
"version": "2.0.0-beta.26",
44
"private": true,
55
"description": "The command line interface for Pipelab",
66
"license": "FSL-1.1-MIT",

apps/ui/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pipelab/ui
22

3+
## 2.0.0-beta.26
4+
5+
### Patch Changes
6+
7+
- fix slashes
8+
- Updated dependencies
9+
- @pipelab/shared@1.0.0-beta.22
10+
311
## 2.0.0-beta.25
412

513
### Patch Changes

apps/ui/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipelab/ui",
3-
"version": "2.0.0-beta.25",
3+
"version": "2.0.0-beta.26",
44
"private": true,
55
"license": "FSL-1.1-MIT",
66
"repository": {
@@ -75,7 +75,8 @@
7575
"vue": "3.5.13",
7676
"vue-dompurify-html": "5.1.0",
7777
"vue-i18n": "10",
78-
"vue-router": "4.4.5"
78+
"vue-router": "4.4.5",
79+
"slash": "3.0.0"
7980
},
8081
"devDependencies": {
8182
"@pipelab/tsconfig": "workspace:*",

apps/ui/src/components/nodes/ParamEditorBody.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ import { computed, PropType, toRefs, ref, onMounted, watch } from "vue";
142142
import { useAPI } from "@renderer/composables/api";
143143
import { useShell } from "@renderer/composables/use-shell";
144144
import { useLogger } from "@pipelab/shared";
145+
import slash from "slash";
145146
import type { OpenDialogOptions } from "electron";
146147
import { SelectButtonChangeEvent } from "primevue/selectbutton";
147148
import { ListboxChangeEvent } from "primevue/listbox";
@@ -224,10 +225,9 @@ const onChangePathClick = async (options: OpenDialogOptions = {}) => {
224225
}
225226
226227
const p = paths.filePaths[0];
227-
228-
emit("update:modelValue", `"${p}"`);
228+
const normalized = slash(p);
229+
emit("update:modelValue", `"${normalized}"`);
229230
};
230-
231231
const onParamNetlifySiteChange = (event: string) => {
232232
console.log("event", event);
233233
emit("update:modelValue", `"${event}"`);

packages/cloud-azure/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @pipelab/cloud-azure
22

3+
## 1.0.0-beta.22
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @pipelab/shared@1.0.0-beta.22
9+
310
## 1.0.0-beta.21
411

512
### Patch Changes

packages/cloud-azure/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipelab/cloud-azure",
3-
"version": "1.0.0-beta.21",
3+
"version": "1.0.0-beta.22",
44
"private": true,
55
"description": "Azure ACI provider for Pipelab",
66
"license": "FSL-1.1-MIT",

packages/core-node/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @pipelab/core-node
22

3+
## 1.0.0-beta.26
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @pipelab/shared@1.0.0-beta.22
9+
310
## 1.0.0-beta.25
411

512
### Patch Changes

0 commit comments

Comments
 (0)