From a93782c851716713b483386a02d4e96601a50548 Mon Sep 17 00:00:00 2001 From: blu3 Date: Wed, 5 Feb 2025 13:18:07 +0300 Subject: [PATCH 1/7] Update actions --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c6134d..ce8f440 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,10 +9,11 @@ jobs: general: runs-on: ubuntu-latest steps: - - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 + - name: Checkout repository + uses: actions/checkout@v4 - - uses: actions/setup-node@v3 + - name: Setup Node.js + uses: actions/setup-node@v4 with: node-version: 'lts/*' From e76f2c603d536fc40a3f743e0a4093a9d3fbcd76 Mon Sep 17 00:00:00 2001 From: blu3 Date: Wed, 5 Feb 2025 13:18:36 +0300 Subject: [PATCH 2/7] Delete .vscode directory --- .vscode/settings.json | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 2ca9f0a..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "gitmoji.additionalEmojis": [ - { - "emoji": "🔄", - "code": ":arrows_counterclockwise:", - "description": "Update changelog" - } - ] -} From 451abdd88633710cb3b1b383254ae0a1efd9d0f8 Mon Sep 17 00:00:00 2001 From: blu3 Date: Wed, 5 Feb 2025 13:21:42 +0300 Subject: [PATCH 3/7] Setup Dependabot --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..61c651e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" From 2c5b6cf7d3516762e17e44bbcae262e4c854e4b3 Mon Sep 17 00:00:00 2001 From: blu3 Date: Wed, 5 Feb 2025 13:30:04 +0300 Subject: [PATCH 4/7] Update gitignore --- .gitignore | 37 ++++++++++++++++++++++++++++++++----- 1 file changed, 32 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index bc00f8f..ecd8872 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* +.pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json @@ -41,8 +42,8 @@ build/Release node_modules/ jspm_packages/ -# TypeScript v1 declaration files -typings/ +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ # TypeScript cache *.tsbuildinfo @@ -53,6 +54,9 @@ typings/ # Optional eslint cache .eslintcache +# Optional stylelint cache +.stylelintcache + # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ @@ -68,15 +72,20 @@ typings/ # Yarn Integrity file .yarn-integrity -# dotenv environment variables file +# dotenv environment variable files .env -.env.test +.env.development.local +.env.test.local +.env.production.local +.env.local # parcel-bundler cache (https://parceljs.org/) .cache +.parcel-cache # Next.js build output .next +out # Nuxt.js build / generate output .nuxt @@ -84,13 +93,20 @@ dist # Gatsby files .cache/ -# Comment in the public line in if your project uses Gatsby and *not* Next.js +# Comment in the public line in if your project uses Gatsby and not Next.js # https://nextjs.org/blog/next-9-1#public-directory-support # public # vuepress build output .vuepress/dist +# vuepress v2.x temp and cache directory +.temp +.cache + +# Docusaurus cache and generated files +.docusaurus + # Serverless directories .serverless/ @@ -103,11 +119,22 @@ dist # TernJS port file .tern-port +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + testing/ site/ docs/public/ + .surfer # Patch generation From 010efee2ee9b7285c27c69491088442721683068 Mon Sep 17 00:00:00 2001 From: blu3 Date: Wed, 5 Feb 2025 14:24:56 +0300 Subject: [PATCH 5/7] Uppercase --- tests/assets/invalid-license.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/assets/invalid-license.txt b/tests/assets/invalid-license.txt index a649adb..026da1f 100644 --- a/tests/assets/invalid-license.txt +++ b/tests/assets/invalid-license.txt @@ -1 +1 @@ -This file doesn't contain a valid mpl license for testing reasons. \ No newline at end of file +This file doesn't contain a valid MPL license for testing reasons. From 4208a06d5c4c9861118a10c33751f9d94aa26aea Mon Sep 17 00:00:00 2001 From: blu3 Date: Wed, 5 Feb 2025 14:35:50 +0300 Subject: [PATCH 6/7] Create FUNDING.yml --- .github/FUNDING.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..625daa5 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +patreon: zen_browser +ko_fi: zen_browser From bc89cb9637567db81677b7361ad60da27e6d37f4 Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mauro-balades@users.noreply.github.com> Date: Sun, 30 Mar 2025 11:16:43 +0200 Subject: [PATCH 7/7] Delete .github/dependabot.yml --- .github/dependabot.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 61c651e..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,10 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "daily" - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily"