From a7487a0681cb11e6f3c5c8eaefd62e5648ad5ea3 Mon Sep 17 00:00:00 2001 From: Brian Muenzenmeyer Date: Tue, 29 Oct 2019 07:34:08 -0500 Subject: [PATCH] feat(config): add new default pattern export options --- packages/core/patternlab-config.json | 5 ++++- .../patternlab-config.json | 3 +++ packages/edition-node-gulp/patternlab-config.json | 5 ++++- packages/edition-node/patternlab-config.json | 5 ++++- packages/edition-twig/patternlab-config.json | 5 ++++- 5 files changed, 19 insertions(+), 4 deletions(-) diff --git a/packages/core/patternlab-config.json b/packages/core/patternlab-config.json index 80669ea5f..39eed54fd 100644 --- a/packages/core/patternlab-config.json +++ b/packages/core/patternlab-config.json @@ -70,8 +70,11 @@ }, "patternExtension": "mustache", "patternStateCascade": ["inprogress", "inreview", "complete"], - "patternExportDirectory": "./pattern_exports/", + "patternExportAll": false, + "patternExportDirectory": "pattern_exports", "patternExportPatternPartials": [], + "patternExportPreserveDirectoryStructure": true, + "patternExportRaw": false, "serverOptions": { "wait": 1000 }, diff --git a/packages/development-edition-engine-handlebars/patternlab-config.json b/packages/development-edition-engine-handlebars/patternlab-config.json index 44b01003e..d8fa3fb2b 100644 --- a/packages/development-edition-engine-handlebars/patternlab-config.json +++ b/packages/development-edition-engine-handlebars/patternlab-config.json @@ -65,8 +65,11 @@ }, "patternExtension": "hbs", "patternStateCascade": ["inprogress", "inreview", "complete"], + "patternExportAll": false, "patternExportDirectory": "pattern_exports", "patternExportPatternPartials": [], + "patternExportPreserveDirectoryStructure": true, + "patternExportRaw": false, "serverOptions": { "wait": 1000 }, diff --git a/packages/edition-node-gulp/patternlab-config.json b/packages/edition-node-gulp/patternlab-config.json index 82596cdee..20625a44f 100644 --- a/packages/edition-node-gulp/patternlab-config.json +++ b/packages/edition-node-gulp/patternlab-config.json @@ -70,8 +70,11 @@ }, "patternExtension": "mustache", "patternStateCascade": ["inprogress", "inreview", "complete"], - "patternExportDirectory": "./pattern_exports/", + "patternExportAll": false, + "patternExportDirectory": "pattern_exports", "patternExportPatternPartials": [], + "patternExportPreserveDirectoryStructure": true, + "patternExportRaw": false, "serverOptions": { "wait": 1000 }, diff --git a/packages/edition-node/patternlab-config.json b/packages/edition-node/patternlab-config.json index 7c0c1ff0a..e5cef6811 100644 --- a/packages/edition-node/patternlab-config.json +++ b/packages/edition-node/patternlab-config.json @@ -70,8 +70,11 @@ }, "patternExtension": "hbs", "patternStateCascade": ["inprogress", "inreview", "complete"], - "patternExportDirectory": "./pattern_exports/", + "patternExportAll": false, + "patternExportDirectory": "pattern_exports", "patternExportPatternPartials": [], + "patternExportPreserveDirectoryStructure": true, + "patternExportRaw": false, "serverOptions": { "wait": 1000 }, diff --git a/packages/edition-twig/patternlab-config.json b/packages/edition-twig/patternlab-config.json index 213d3ec9c..20ab60345 100644 --- a/packages/edition-twig/patternlab-config.json +++ b/packages/edition-twig/patternlab-config.json @@ -134,8 +134,11 @@ "inreview", "complete" ], - "patternExportDirectory": "./pattern_exports/", + "patternExportAll": false, + "patternExportDirectory": "pattern_exports", "patternExportPatternPartials": [], + "patternExportPreserveDirectoryStructure": true, + "patternExportRaw": false, "serverOptions": { "wait": 1000 },