@uniformdev/transformer 1.1.43 → 1.1.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +3 -3
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -6908,12 +6908,12 @@ var GenerateMissingProjectMapNodesService = class {
|
|
|
6908
6908
|
}
|
|
6909
6909
|
pathToNodeId(nodePath) {
|
|
6910
6910
|
if (nodePath === "/") return "pmn-group-root";
|
|
6911
|
-
const slug = nodePath.split("/").filter((s) => s.length > 0).join("-");
|
|
6911
|
+
const slug = nodePath.split("/").filter((s) => s.length > 0).join("-").replace(/[\\:*?"<>|]/g, "_");
|
|
6912
6912
|
return `pmn-group-${slug}`;
|
|
6913
6913
|
}
|
|
6914
6914
|
pathToFileName(nodePath) {
|
|
6915
6915
|
if (nodePath === "/") return "root-node.yaml";
|
|
6916
|
-
const slug = nodePath.split("/").filter((s) => s.length > 0).join("-");
|
|
6916
|
+
const slug = nodePath.split("/").filter((s) => s.length > 0).join("-").replace(/[\\:*?"<>|]/g, "_");
|
|
6917
6917
|
return `${slug}-node.yaml`;
|
|
6918
6918
|
}
|
|
6919
6919
|
};
|
|
@@ -7144,7 +7144,7 @@ function createSplitContentTypeCommand() {
|
|
|
7144
7144
|
// package.json
|
|
7145
7145
|
var package_default = {
|
|
7146
7146
|
name: "@uniformdev/transformer",
|
|
7147
|
-
version: "1.1.
|
|
7147
|
+
version: "1.1.44",
|
|
7148
7148
|
description: "CLI tool for transforming Uniform.dev serialization files offline",
|
|
7149
7149
|
type: "module",
|
|
7150
7150
|
bin: {
|