From 825581e5b3aa1063a046d141f2903a0ebca9ab37 Mon Sep 17 00:00:00 2001 From: Pothi Kalimuthu <1254302+pothi@users.noreply.github.com> Date: Tue, 18 Jun 2019 18:38:10 +0530 Subject: [PATCH 1/8] Instruction to install as "themeless Hugo" --- .github/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/README.md diff --git a/.github/README.md b/.github/README.md new file mode 100644 index 0000000..8897051 --- /dev/null +++ b/.github/README.md @@ -0,0 +1,16 @@ +# How to install for "themeless Hugo" + +Ref: https://www.ii.com/themeless-gitless-intro-hugo/ + +``` +git clone https://github.com/dirkolbrich/hugo-theme-tailwindcss-starter my-new-hugo-site +cd my-new-hugo-site +cp -a exampleSite/con* . +rm -rf exampleSite .git +git init + +# following instructions are from the upstream repo +npm install -g postcss-cli autoprefixer +npm install +``` + From c62028b619a804290be6468d2778968c60e99236 Mon Sep 17 00:00:00 2001 From: Pothi Kalimuthu <1254302+pothi@users.noreply.github.com> Date: Tue, 18 Jun 2019 18:40:06 +0530 Subject: [PATCH 2/8] Update docs --- .github/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/README.md b/.github/README.md index 8897051..d95763f 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,15 +1,17 @@ -# How to install for "themeless Hugo" +# How to install as "themeless Hugo" -Ref: https://www.ii.com/themeless-gitless-intro-hugo/ +Original Idea: https://www.ii.com/themeless-gitless-intro-hugo/ ``` git clone https://github.com/dirkolbrich/hugo-theme-tailwindcss-starter my-new-hugo-site +# instead of the above line, the following should work too. +# git clone https://github.com/pothi/hugo-theme-tailwindcss-starter my-new-hugo-site cd my-new-hugo-site cp -a exampleSite/con* . rm -rf exampleSite .git git init -# following instructions are from the upstream repo +# following instructions are from upstream repo npm install -g postcss-cli autoprefixer npm install ``` From acd1d7dddfd08fbaa00addf30d836ac841a51842 Mon Sep 17 00:00:00 2001 From: Pothi Kalimuthu <1254302+pothi@users.noreply.github.com> Date: Tue, 18 Jun 2019 18:45:47 +0530 Subject: [PATCH 3/8] Remove the line that contains info about theme --- .github/{README.md => readme.md} | 5 +++++ 1 file changed, 5 insertions(+) rename .github/{README.md => readme.md} (87%) diff --git a/.github/README.md b/.github/readme.md similarity index 87% rename from .github/README.md rename to .github/readme.md index d95763f..3bd37b1 100644 --- a/.github/README.md +++ b/.github/readme.md @@ -6,9 +6,14 @@ Original Idea: https://www.ii.com/themeless-gitless-intro-hugo/ git clone https://github.com/dirkolbrich/hugo-theme-tailwindcss-starter my-new-hugo-site # instead of the above line, the following should work too. # git clone https://github.com/pothi/hugo-theme-tailwindcss-starter my-new-hugo-site + cd my-new-hugo-site cp -a exampleSite/con* . rm -rf exampleSite .git + +# let's remove the line related to theme +sed -i '/^theme/d' config.toml + git init # following instructions are from upstream repo From 9a745a8bb607656dc32593c5be96350619c23109 Mon Sep 17 00:00:00 2001 From: Pothi Kalimuthu <1254302+pothi@users.noreply.github.com> Date: Tue, 18 Jun 2019 18:47:00 +0530 Subject: [PATCH 4/8] Improve docs --- .github/readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/readme.md b/.github/readme.md index 3bd37b1..28d24a3 100644 --- a/.github/readme.md +++ b/.github/readme.md @@ -19,5 +19,7 @@ git init # following instructions are from upstream repo npm install -g postcss-cli autoprefixer npm install + +hugo serve ``` From 814ef75f52ed73f534b6a2831d0847b447d827c5 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 6 Jul 2019 04:05:38 +0000 Subject: [PATCH 5/8] Add renovate.json --- renovate.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..f45d8f1 --- /dev/null +++ b/renovate.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "config:base" + ] +} From 4a8f1ddf5df496dafffc70e36a285cfd1cf4bcf0 Mon Sep 17 00:00:00 2001 From: Pothi Kalimuthu <1254302+pothi@users.noreply.github.com> Date: Sat, 6 Jul 2019 11:35:33 +0530 Subject: [PATCH 6/8] Move renovate to .github dir and preserve Semver ranges --- .github/renovate.json | 6 ++++++ renovate.json | 5 ----- 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 .github/renovate.json delete mode 100644 renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..5fcce11 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,6 @@ +{ + "extends": [ + "config:base", + ":preserveSemverRanges" + ] +} diff --git a/renovate.json b/renovate.json deleted file mode 100644 index f45d8f1..0000000 --- a/renovate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "extends": [ - "config:base" - ] -} From 0824dc76d723a2faf62f47691d75ca88992850c9 Mon Sep 17 00:00:00 2001 From: Pothi Kalimuthu <1254302+pothi@users.noreply.github.com> Date: Sat, 6 Jul 2019 11:58:18 +0530 Subject: [PATCH 7/8] Move renovate config to root of the repo --- .github/renovate.json => renovate.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/renovate.json => renovate.json (100%) diff --git a/.github/renovate.json b/renovate.json similarity index 100% rename from .github/renovate.json rename to renovate.json From 3ba2fecc612330d0121bed7003206a9375433b72 Mon Sep 17 00:00:00 2001 From: Pothi Kalimuthu <1254302+pothi@users.noreply.github.com> Date: Sat, 6 Jul 2019 12:19:46 +0530 Subject: [PATCH 8/8] Move renovate.json to .github dir --- renovate.json => .github/renovate.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename renovate.json => .github/renovate.json (100%) diff --git a/renovate.json b/.github/renovate.json similarity index 100% rename from renovate.json rename to .github/renovate.json