From fc3bea92926430961e96c0987c5ebbaf27b258a4 Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:27:27 -0500 Subject: [PATCH 1/8] Updated circleci config for hugo. --- .circleci/config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index e69de29..76a5dbe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -0,0 +1,9 @@ +orbs: + hugo: circleci/hugo@0.1 +version: 2.1 +workflows: + main: + jobs: + - hugo/build: + html-proofer: true + version: '0.105.0' From d296a3111f1e29092c4ca77a248617885762684f Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:31:36 -0500 Subject: [PATCH 2/8] UUpdated circleci to test yarn. --- .circleci/config.yml | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76a5dbe..edea7b0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,16 @@ +version: '2.1' orbs: - hugo: circleci/hugo@0.1 -version: 2.1 -workflows: - main: - jobs: - - hugo/build: - html-proofer: true - version: '0.105.0' + node: circleci/node@x.y +jobs: + test: + executor: + name: node/default + tag: '16' + steps: + - checkout + - node/install-packages: + pkg-manager: yarn + - run: + command: yarn run test + name: Run YARN tests + From 3c2818140111de950067da9698effb37f73f97be Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:33:07 -0500 Subject: [PATCH 3/8] Updated circleci to test yarn. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index edea7b0..44be4cb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: '2.1' orbs: - node: circleci/node@x.y + node: circleci/node@16.17 jobs: test: executor: From d43d412799d0fc4c3f041b0b66f1aed44dcf2422 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Nov 2022 00:33:34 +0000 Subject: [PATCH 4/8] Bump concurrently from 7.4.0 to 7.5.0 Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 7.4.0 to 7.5.0. - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - [Commits](https://github.com/open-cli-tools/concurrently/compare/v7.4.0...v7.5.0) --- updated-dependencies: - dependency-name: concurrently dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index bfae10a..ccdabb7 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "@tailwindcss/typography": "^0.5.7", "alpinejs": "^3.10.5", "autoprefixer": "^10.4.12", - "concurrently": "^7.4.0", + "concurrently": "^7.5.0", "postcss": "^8.4.18", "postcss-cli": "^10.0.0", "tailwindcss": "^3.2.1" diff --git a/yarn.lock b/yarn.lock index d28ef3e..1724eb1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -192,10 +192,10 @@ color-name@^1.1.4, color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -concurrently@^7.4.0: - version "7.4.0" - resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-7.4.0.tgz#bb0e344964bc172673577c420db21e963f2f7368" - integrity sha512-M6AfrueDt/GEna/Vg9BqQ+93yuvzkSKmoTixnwEJkH0LlcGrRC2eCmjeG1tLLHIYfpYJABokqSGyMcXjm96AFA== +concurrently@^7.5.0: + version "7.5.0" + resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-7.5.0.tgz#4dd432d4634a8251f27ab000c4974e78e3906bd3" + integrity sha512-5E3mwiS+i2JYBzr5BpXkFxOnleZTMsG+WnE/dCG4/P+oiVXrbmrBwJ2ozn4SxwB2EZDrKR568X+puVohxz3/Mg== dependencies: chalk "^4.1.0" date-fns "^2.29.1" From 781875829232b4b1ce982571d57a2e9801e4efb2 Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:36:09 -0500 Subject: [PATCH 5/8] Updated circleci tests. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 44be4cb..ad178e4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: '2.1' orbs: - node: circleci/node@16.17 + node: circleci/node@5.0.3 jobs: test: executor: From 79ea9ff9617f9d31777e5feff74ea71b4a96678b Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:38:16 -0500 Subject: [PATCH 6/8] updated circleci. --- .circleci/config.yml | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ad178e4..217ca07 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,16 +1,22 @@ -version: '2.1' +version: 2.1 + orbs: - node: circleci/node@5.0.3 + node: circleci/node@x.y + jobs: - test: - executor: - name: node/default - tag: '16' + install-node-example: + docker: + - image: cimg/base:stable steps: - checkout - - node/install-packages: - pkg-manager: yarn - - run: - command: yarn run test - name: Run YARN tests + - node/install: + install-yarn: true + node-version: '16.17' + - run: node --version +workflows: + test_my_app: + jobs: + - install-node-example + + From 78ee685ffc4e377953014453849c7ddc1b7e72d8 Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:42:08 -0500 Subject: [PATCH 7/8] Removed circleci. --- .circleci/config.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 217ca07..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: 2.1 - -orbs: - node: circleci/node@x.y - -jobs: - install-node-example: - docker: - - image: cimg/base:stable - steps: - - checkout - - node/install: - install-yarn: true - node-version: '16.17' - - run: node --version -workflows: - test_my_app: - jobs: - - install-node-example - - - From 96ca1f0cb95a9d117feccfcaf438868dd148ab59 Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:55:01 -0500 Subject: [PATCH 8/8] Updated readme. --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1d00fcc..1cda494 100644 --- a/README.md +++ b/README.md @@ -7,14 +7,14 @@ Tests Passing - - GitHub Contributors + + GitHub Contributors - - Issues + + Issues - - GitHub pull requests + + GitHub pull requests

@@ -32,11 +32,11 @@

View Demo · - Report Bug + Report Bug · - Request Feature + Request Feature · - Ask Question + Ask Question