From 3f7bb3cf8cf15ea948a64818b87a397276b23d53 Mon Sep 17 00:00:00 2001 From: robb <122219240+statulr@users.noreply.github.com> Date: Thu, 25 Jan 2024 15:20:48 -0500 Subject: [PATCH 1/2] main merge (#16) * Create dependabot.yml Signed-off-by: robb <122219240+statulr@users.noreply.github.com> * Bump @astrojs/check from 0.3.4 to 0.4.1 Bumps [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) from 0.3.4 to 0.4.1. - [Release notes](https://github.com/withastro/language-tools/releases) - [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md) - [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.4.1/packages/astro-check) --- updated-dependencies: - dependency-name: "@astrojs/check" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Bump prettier-plugin-astro from 0.12.3 to 0.13.0 (#14) Bumps [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) from 0.12.3 to 0.13.0. - [Release notes](https://github.com/withastro/prettier-plugin-astro/releases) - [Changelog](https://github.com/withastro/prettier-plugin-astro/blob/main/CHANGELOG.md) - [Commits](https://github.com/withastro/prettier-plugin-astro/compare/v0.12.3...v0.13.0) --- updated-dependencies: - dependency-name: prettier-plugin-astro dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: robb <122219240+statulr@users.noreply.github.com> Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/dependabot.yml | 11 +++++++++++ package.json | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5f0889c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "npm" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/package.json b/package.json index 19062ab..9a767c3 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/check": "^0.3.3", + "@astrojs/check": "^0.4.1", "@stylexjs/stylex": "^0.3.0", "astro": "^4.0.6", "astro-stylex": "^0.1.1", @@ -21,6 +21,6 @@ "eslint": "^8.56.0", "eslint-plugin-astro": "^0.31.0", "prettier": "^3.1.1", - "prettier-plugin-astro": "^0.12.2" + "prettier-plugin-astro": "^0.13.0" } } From 858df39f0e5c631229c136c69caa64b9257c9054 Mon Sep 17 00:00:00 2001 From: robb <122219240+statulr@users.noreply.github.com> Date: Thu, 25 Jan 2024 15:33:25 -0500 Subject: [PATCH 2/2] Rewrite Update (#19) * Create dependabot.yml Signed-off-by: robb <122219240+statulr@users.noreply.github.com> * Bump @astrojs/check from 0.3.4 to 0.4.1 Bumps [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) from 0.3.4 to 0.4.1. - [Release notes](https://github.com/withastro/language-tools/releases) - [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md) - [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.4.1/packages/astro-check) --- updated-dependencies: - dependency-name: "@astrojs/check" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Bump prettier-plugin-astro from 0.12.3 to 0.13.0 (#14) Bumps [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) from 0.12.3 to 0.13.0. - [Release notes](https://github.com/withastro/prettier-plugin-astro/releases) - [Changelog](https://github.com/withastro/prettier-plugin-astro/blob/main/CHANGELOG.md) - [Commits](https://github.com/withastro/prettier-plugin-astro/compare/v0.12.3...v0.13.0) --- updated-dependencies: - dependency-name: prettier-plugin-astro dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Merge Beta Branch with Rewrite (#17) (#18) * remove `.env.example` and `.env.local.example` * improve the get started section * added instructions to setup the `.env` * added `.env.example` * update the `.env` info * remove `.env` file * added `.env` in `.gitignore` * added: language type * refactor: Rewrite In Astro - Deleting previous code * refactor:Initialize Blank Project with Astro * added `prettier` and `prettier-plugin-astro` for formatting * added `prettierrc.mjs` config for prettier to format `.astro` files * added `eslint` and `eslint-plugin-astro` for linting * added `.eslintrc.cjs` config for eslint to work with astro * add view transitions and import aliases config * add StyleX integration * added the logo of the website for the readme * updated the `README.md` * added `@typescript-eslint/parser` @typescript-eslint/parser is needed when using typescript with eslint * Create dependabot.yml * Bump @astrojs/check from 0.3.4 to 0.4.1 Bumps [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) from 0.3.4 to 0.4.1. - [Release notes](https://github.com/withastro/language-tools/releases) - [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md) - [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.4.1/packages/astro-check) --- updated-dependencies: - dependency-name: "@astrojs/check" dependency-type: direct:production update-type: version-update:semver-minor ... * Bump prettier-plugin-astro from 0.12.3 to 0.13.0 (#14) Bumps [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) from 0.12.3 to 0.13.0. - [Release notes](https://github.com/withastro/prettier-plugin-astro/releases) - [Changelog](https://github.com/withastro/prettier-plugin-astro/blob/main/CHANGELOG.md) - [Commits](https://github.com/withastro/prettier-plugin-astro/compare/v0.12.3...v0.13.0) --- updated-dependencies: - dependency-name: prettier-plugin-astro dependency-type: direct:development update-type: version-update:semver-minor ... --------- Signed-off-by: robb <122219240+statulr@users.noreply.github.com> Signed-off-by: dependabot[bot] Co-authored-by: Hamza <72913359+Hamza12700@users.noreply.github.com> Co-authored-by: RoboXGamer Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: robb <122219240+statulr@users.noreply.github.com> Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hamza <72913359+Hamza12700@users.noreply.github.com> Co-authored-by: RoboXGamer