@studiocms/github 0.1.0-beta.26 → 0.1.0-beta.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @studiocms/github Plugin
2
2
 
3
+ [![codecov](https://codecov.io/github/withstudiocms/studiocms/graph/badge.svg?token=RN8LT1O5E2&component=studiocms_github)](https://codecov.io/github/withstudiocms/studiocms)
4
+
3
5
  This plugin integrates GitHub as an OAuth authentication provider for StudioCMS. It sets up the necessary authentication service, including the provider's name, endpoint paths and required environment variables.
4
6
 
5
7
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studiocms/github",
3
- "version": "0.1.0-beta.26",
3
+ "version": "0.1.0-beta.27",
4
4
  "description": "Add GitHub OAuth Support to your StudioCMS project.",
5
5
  "author": {
6
6
  "name": "withstudiocms",
@@ -55,13 +55,14 @@
55
55
  },
56
56
  "peerDependencies": {
57
57
  "astro": "^5.12.9",
58
- "effect": "^3.17.13",
58
+ "effect": "^3.17.14",
59
59
  "vite": "^6.3.4",
60
- "studiocms": "0.1.0-beta.26"
60
+ "studiocms": "0.1.0-beta.27"
61
61
  },
62
62
  "scripts": {
63
63
  "build": "buildkit build 'src/**/*.{ts,astro,css,json,png}'",
64
64
  "dev": "buildkit dev 'src/**/*.{ts,astro,css,json,png}'",
65
- "typecheck": "tspc -p tsconfig.tspc.json"
65
+ "typecheck": "tspc -p tsconfig.tspc.json",
66
+ "test": "vitest"
66
67
  }
67
68
  }