Skip to content

Commit

Permalink
chore(release): 5.0.0-4
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Sep 27, 2023
1 parent bffc36a commit 23d7acb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adonisjs/ally",
"version": "5.0.0-3",
"version": "5.0.0-4",
"description": "Social authentication provider for AdonisJS",
"type": "module",
"main": "build/index.js",
Expand Down Expand Up @@ -47,8 +47,8 @@
"author": "adonisjs,virk",
"license": "MIT",
"devDependencies": {
"@adonisjs/assembler": "^6.1.3-18",
"@adonisjs/core": "^6.1.5-19",
"@adonisjs/assembler": "^6.1.3-22",
"@adonisjs/core": "^6.1.5-26",
"@adonisjs/eslint-config": "^1.1.8",
"@adonisjs/prettier-config": "^1.1.8",
"@adonisjs/tsconfig": "^1.1.8",
Expand All @@ -58,24 +58,24 @@
"@japa/expect-type": "^2.0.0-0",
"@japa/file-system": "^2.0.0-1",
"@japa/runner": "^3.0.0-6",
"@swc/core": "^1.3.78",
"@types/node": "^20.5.1",
"@swc/core": "1.3.82",
"@types/node": "^20.7.0",
"c8": "^8.0.1",
"copyfiles": "^2.4.1",
"del-cli": "^5.0.0",
"del-cli": "^5.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint": "^8.50.0",
"github-label-sync": "^2.3.1",
"husky": "^8.0.3",
"nock": "^13.3.3",
"np": "^8.0.4",
"prettier": "^3.0.2",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
"typescript": "^5.2.2"
},
"dependencies": {
"@poppinss/oauth-client": "^5.1.0-3",
"@poppinss/utils": "^6.5.0-3"
"@poppinss/oauth-client": "^5.1.0-4",
"@poppinss/utils": "^6.5.0-7"
},
"peerDependencies": {
"@adonisjs/core": "^6.1.5-19"
Expand Down
2 changes: 1 addition & 1 deletion src/abstract_drivers/oauth1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import { Exception } from '@poppinss/utils'
import { Oauth1Client } from '@poppinss/oauth-client'
import { Oauth1Client } from '@poppinss/oauth-client/oauth1'
import type { HttpContext } from '@adonisjs/core/http'

import {
Expand Down
2 changes: 1 addition & 1 deletion src/abstract_drivers/oauth2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import { Exception } from '@poppinss/utils'
import { Oauth2Client } from '@poppinss/oauth-client'
import { Oauth2Client } from '@poppinss/oauth-client/oauth2'
import type { HttpContext } from '@adonisjs/core/http'

import {
Expand Down

0 comments on commit 23d7acb

Please sign in to comment.