From 6bc8fc035e79b38a3a2773258093f8b0eaaea3c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Mach=C3=A1=C4=8Dek?= <8machy@seznam.cz> Date: Sun, 18 Feb 2018 17:11:16 +0100 Subject: [PATCH 1/7] Create manifest.json --- machy8/webloader-bundle/1.1/manifest.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 machy8/webloader-bundle/1.1/manifest.json diff --git a/machy8/webloader-bundle/1.1/manifest.json b/machy8/webloader-bundle/1.1/manifest.json new file mode 100644 index 00000000..1152f4cd --- /dev/null +++ b/machy8/webloader-bundle/1.1/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "WebLoader\\WebLoaderBundle\\WebLoaderBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + "src/": "%SRC_DIR%/" + } +} From ad4145268a6a2ec4c70513742cd9c806718182b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Mach=C3=A1=C4=8Dek?= <8machy@seznam.cz> Date: Sun, 18 Feb 2018 17:12:50 +0100 Subject: [PATCH 2/7] Create .gitignore --- machy8/webloader-bundle/1.1/src/webtemp/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 machy8/webloader-bundle/1.1/src/webtemp/.gitignore diff --git a/machy8/webloader-bundle/1.1/src/webtemp/.gitignore b/machy8/webloader-bundle/1.1/src/webtemp/.gitignore new file mode 100644 index 00000000..d6b7ef32 --- /dev/null +++ b/machy8/webloader-bundle/1.1/src/webtemp/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore From f488592f6b74e0187e4cac1c79f533e0772ea33b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Mach=C3=A1=C4=8Dek?= <8machy@seznam.cz> Date: Sun, 18 Feb 2018 17:13:35 +0100 Subject: [PATCH 3/7] Rename machy8/webloader-bundle/1.1/src/webtemp/.gitignore to machy8/webloader-bundle/1.1/public/webtemp/.gitignore --- machy8/webloader-bundle/1.1/{src => public}/webtemp/.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename machy8/webloader-bundle/1.1/{src => public}/webtemp/.gitignore (100%) diff --git a/machy8/webloader-bundle/1.1/src/webtemp/.gitignore b/machy8/webloader-bundle/1.1/public/webtemp/.gitignore similarity index 100% rename from machy8/webloader-bundle/1.1/src/webtemp/.gitignore rename to machy8/webloader-bundle/1.1/public/webtemp/.gitignore From bab87e4110745f9dfa3406a50fc85aca07d65831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Mach=C3=A1=C4=8Dek?= <8machy@seznam.cz> Date: Sun, 18 Feb 2018 17:14:26 +0100 Subject: [PATCH 4/7] Update manifest.json --- machy8/webloader-bundle/1.1/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machy8/webloader-bundle/1.1/manifest.json b/machy8/webloader-bundle/1.1/manifest.json index 1152f4cd..2477d958 100644 --- a/machy8/webloader-bundle/1.1/manifest.json +++ b/machy8/webloader-bundle/1.1/manifest.json @@ -4,6 +4,6 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" - "src/": "%SRC_DIR%/" + "public/": "%PUBLIC_DIR%/" } } From c00a721ec16c1d6d6c9faa4305d3e888eb158039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Mach=C3=A1=C4=8Dek?= <8machy@seznam.cz> Date: Sun, 18 Feb 2018 17:14:37 +0100 Subject: [PATCH 5/7] Update manifest.json --- machy8/webloader-bundle/1.1/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machy8/webloader-bundle/1.1/manifest.json b/machy8/webloader-bundle/1.1/manifest.json index 2477d958..780c4b54 100644 --- a/machy8/webloader-bundle/1.1/manifest.json +++ b/machy8/webloader-bundle/1.1/manifest.json @@ -3,7 +3,7 @@ "WebLoader\\WebLoaderBundle\\WebLoaderBundle": ["all"] }, "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" + "config/": "%CONFIG_DIR%/", "public/": "%PUBLIC_DIR%/" } } From 040c5b069dd75856398191a68dee18f298cd778e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Mach=C3=A1=C4=8Dek?= <8machy@seznam.cz> Date: Sun, 18 Feb 2018 17:15:28 +0100 Subject: [PATCH 6/7] Create web_loader.yaml --- machy8/webloader-bundle/1.1/config/dev/web_loader.yaml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 machy8/webloader-bundle/1.1/config/dev/web_loader.yaml diff --git a/machy8/webloader-bundle/1.1/config/dev/web_loader.yaml b/machy8/webloader-bundle/1.1/config/dev/web_loader.yaml new file mode 100644 index 00000000..67bdce26 --- /dev/null +++ b/machy8/webloader-bundle/1.1/config/dev/web_loader.yaml @@ -0,0 +1,2 @@ +web_loader: + disableCache: true From 5d3bef884e4dff859aa5e41c5e8d97cb6143057b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Mach=C3=A1=C4=8Dek?= <8machy@seznam.cz> Date: Sun, 18 Feb 2018 17:37:15 +0100 Subject: [PATCH 7/7] Update manifest.json --- machy8/webloader-bundle/1.1/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machy8/webloader-bundle/1.1/manifest.json b/machy8/webloader-bundle/1.1/manifest.json index 780c4b54..74e2aa4d 100644 --- a/machy8/webloader-bundle/1.1/manifest.json +++ b/machy8/webloader-bundle/1.1/manifest.json @@ -4,6 +4,6 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/", - "public/": "%PUBLIC_DIR%/" + "public/": "%PUBLIC_DIR%/" } }