diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index a582713..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: '2.1' -orbs: - codecov: codecov/codecov@3.2.3 -workflows: - upload-to-codecov: - jobs: - - checkout - - codecov/upload diff --git a/.github/Added dependabot.yml b/.github/dependabot.yml similarity index 100% rename from .github/Added dependabot.yml rename to .github/dependabot.yml diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml deleted file mode 100644 index 3ee89a0..0000000 --- a/.github/workflows/config.yml +++ /dev/null @@ -1,42 +0,0 @@ -# Use the latest 2.1 version of CircleCI pipeline process engine. -# See: https://circleci.com/docs/2.0/configuration-reference -version: 2.1 - -orbs: - # The Node.js orb contains a set of prepackaged CircleCI configuration you can utilize - # Orbs reduce the amount of configuration required for common tasks. - # See the orb documentation here: https://circleci.com/developer/orbs/orb/circleci/node - node: circleci/node@5.0.3 - -jobs: - # Below is the definition of your job to build and test your app, you can rename and customize it as you want. - build-and-test: - # These next lines define a Docker executor: https://circleci.com/docs/2.0/executor-types/ - # You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. - # A list of available CircleCI Docker Convenience Images are available here: https://circleci.com/developer/images/image/cimg/node - docker: - - image: cimg/node:16.17.1 - # Then run your tests! - # CircleCI will report the results back to your VCS provider. - steps: - # Checkout the code as the first step. - - checkout - # Next, the node orb's install-packages step will install the dependencies from a package.json. - # The orb install-packages step will also automatically cache them for faster future runs. - - node/install-packages: - # If you are using yarn, change the line below from "npm" to "yarn" - pkg-manager: npm - - run: - name: Run tests - command: yarn test && "echo Build Successful!" - -workflows: - # Below is the definition of your workflow. - # Inside the workflow, you provide the jobs you want to run, e.g this workflow runs the build-and-test job above. - # CircleCI will run this workflow on every commit. - # For more details on extending your workflow, see the configuration docs: https://circleci.com/docs/2.0/configuration-reference/#workflows - sample: - jobs: - - build-and-test - # For running simple node tests, you could optionally use the node/test job from the orb to replicate and replace the job above in fewer lines. - # - node/test diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml deleted file mode 100644 index 9a57696..0000000 --- a/.github/workflows/workflow.yml +++ /dev/null @@ -1,86 +0,0 @@ - -- name: Codecov -on: [push, pull_request] -jobs: - no-deps: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [macos-latest, windows-latest, ubuntu-latest] - steps: - - name: Checkout -- uses: codecov/codecov-action@v3.1. - with: - flags: unittests # optional - name: codecov-umbrella # optional - fail_ci_if_error: true # optional (default = false) - verbose: true # optional (default = false) - - - name: Upload coverage to Codecov (script) - uses: ./ - with: - files: ./coverage/script/coverage-final.json - flags: script,${{ matrix.os }} - name: codecov-script - verbose: true - - name: Upload coverage to Codecov (demo) - uses: ./ - with: - files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json - file: ./coverage/coverage-final.json - flags: demo,${{ matrix.os }} - name: codecov-demo - verbose: true - - name: Upload coverage to Codecov (version) - uses: ./ - with: - files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json - file: ./coverage/coverage-final.json - flags: version,${{ matrix.os }} - name: codecov-version - version: v0.1.0_8880 - verbose: true - run: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [macos-latest, windows-latest, ubuntu-latest] - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Install dependencies - run: npm install - - name: Lint - run: npm run lint - - name: Run tests and collect coverage - run: npm run test - - name: Upload coverage to Codecov (script) - uses: ./ - with: - files: ./coverage/script/coverage-final.json - flags: script,${{ matrix.os }} - name: codecov-script - verbose: true - - name: Upload coverage to Codecov (demo) - uses: ./ - with: - files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json - file: ./coverage/coverage-final.json - flags: demo,${{ matrix.os }} - name: codecov-demo - verbose: true - - name: Upload coverage to Codecov (version) - uses: ./ - with: - files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json - file: ./coverage/coverage-final.json - flags: version,${{ matrix.os }} - name: codecov-version - version: v0.1.0_8880 - verbose: true -Footer -© 2022 GitHub, Inc. -Footer navigation -Terms -Privacy - diff --git a/LICENSE b/LICENSE index 261eeb9..ad61687 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright [2022] [NusserStudios] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 55f171e..1d00fcc 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

GitHub Readme Stats -

TailBliss

-

A Hugo Starter template with TailWindCSS and Alpine.js.

+

TailBliss

+

TailBliss is an opinionated Hugo Starter with Tailwind CSS 3.2 and Alpine.js with light/dark modes.

@@ -10,9 +10,6 @@ GitHub Contributors - - - Issues @@ -21,16 +18,19 @@

- - + + - - + + + + +

- View Demo + View Demo · Report Bug · @@ -40,10 +40,6 @@

-# TailBliss -Hugo + TailwindCSS 3.2.0 + Alpine.js for Hacktoberfest - -TailBliss is an opinionated Hugo Starter with Tailwind CSS 3.2 and Alpine.js with light/dark modes. **Install to VS Code with:** `git clone git@github.com:nusserstudios/hugo-twcss-alpine.git your-name` diff --git a/codecov b/codecov deleted file mode 100755 index 116b23b..0000000 Binary files a/codecov and /dev/null differ diff --git a/codecov.SHA256SUM b/codecov.SHA256SUM deleted file mode 100644 index 53b7781..0000000 --- a/codecov.SHA256SUM +++ /dev/null @@ -1 +0,0 @@ -20f9c9d78483fce977b6cc39e231a734a23bcd36f4d536bb7355222fb88d02bc codecov \ No newline at end of file diff --git a/codecov.SHA256SUM.sig b/codecov.SHA256SUM.sig deleted file mode 100644 index b91bf16..0000000 --- a/codecov.SHA256SUM.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEEJwNOf9uFDgu8LGL/gGuyiu13mGkFAmMsvyQACgkQgGuyiu13 -mGmStA/+N4roe/N6hA78uO55SL8/8tfS75QYe+PbRF3nN+mpXsyik+gMZWfu9SLT -lQJK2T9PfU6dFx5VnceoENXgnH+SUvDLorKUOwTolXMIEos9bLCPRcgfe3AkTeZR -2sHZcDj75nmcfEpO9Tf/Jpq2PPrP24J3S822/v3ZT8lca9jJe8CJlBL15yXC1kgD -Vk72+r9KzAoAu6bCEvBOOIFHHNfVBf0635vamRFCHFgjN1rRJW5cuyieZr9rYa22 -1KDpN6vijJwUlrwB7V8wTvaeOEinR5Fzo55TtjTtE4brfaOF2KCzM33Czzep3SfH -OPJENE1+A+/bleRcVok5qmRfvMThSITE98INNk4qCVsB1YqTOvtJs5rFtyuH/Xqf -674HAqeNjzXvFME5oX4Hm31X1Y4rfzH0738H25J//3GqZWahivq7e8ElyYP+CI0H -pXbeN6E9Zup/QR6YjYWBV35AvRscC7v4e6HnlN9ctTuAd0VZJXI8JLM1XTgiQnIQ -rql/7lIYrvzLerPmzVoAmYZuV2iAE7pxfo3Iy9zEtgV8cF42peE3TDyrqj5Ylbtc -1pKlfIIAhoB/ff2hIvGonXG4OgTCCQrUvbtI8KsNi6UFPX5jhCaltKMsLG/JPM+Q -vXPa43eZ+aWPHOi9dFdlg98GCFesSVKLECkU4DjoZxJsI493PrQ= -=IHR5 ------END PGP SIGNATURE-----