From 4e473891ed21abef438258fe1b81f423c52b65e7 Mon Sep 17 00:00:00 2001 From: Tate Date: Fri, 7 Jun 2024 12:49:50 +1200 Subject: [PATCH 1/2] Default static output path to dot --- src/lib/static.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/static.js b/src/lib/static.js index 2968feb..ee9c058 100644 --- a/src/lib/static.js +++ b/src/lib/static.js @@ -4,7 +4,7 @@ module.exports = class Static { static runScriptCommands(buildConfig = {}) { return Reader.runScriptCommands({ ...buildConfig, - output_path: buildConfig.source || '', + output_path: buildConfig.source || '.', install_command: '', build_command: '' }); From 15d1e078359a14e0ae538c7c608cef9b3b5de1e0 Mon Sep 17 00:00:00 2001 From: Tate Date: Fri, 7 Jun 2024 12:50:28 +1200 Subject: [PATCH 2/2] 1.1.7 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2432fd7..06b2841 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@cloudcannon/command-builder", - "version": "1.1.6", + "version": "1.1.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cloudcannon/command-builder", - "version": "1.1.6", + "version": "1.1.7", "license": "ISC", "devDependencies": { "eslint": "^7.27.0", diff --git a/package.json b/package.json index d2abe2d..7bce8e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cloudcannon/command-builder", - "version": "1.1.6", + "version": "1.1.7", "description": "A script that builds the script that builds your site", "main": "src/index.js", "scripts": {