Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Mar 25, 2023
1 parent 140396b commit 8c7eb42
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,27 +31,27 @@
"author": "virk,poppinss",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@japa/assert": "^1.4.1",
"@japa/expect-type": "^1.0.3",
"@japa/run-failed-tests": "^1.1.1",
"@japa/runner": "^2.5.1",
"@japa/spec-reporter": "^1.3.3",
"@swc/core": "^1.3.39",
"@types/node": "^18.15.0",
"@swc/core": "^1.3.42",
"@types/node": "^18.15.8",
"c8": "^7.13.0",
"del-cli": "^5.0.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-adonis": "^3.0.3",
"eslint-plugin-prettier": "^4.2.1",
"github-label-sync": "^2.3.1",
"husky": "^8.0.3",
"np": "^7.6.3",
"prettier": "^2.8.4",
"np": "^7.6.4",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
"typescript": "^5.0.2"
},
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions tests/macroable.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Macroable from '../index.js'
test.group('Macroable | macro', () => {
test('add a property to the class prototype', ({ expectTypeOf, assert }) => {
class Parent extends Macroable {
foo: string
declare foo: string
}

Parent.macro('foo', 'bar')
Expand All @@ -28,7 +28,7 @@ test.group('Macroable | macro', () => {

test('add a property as a function', ({ expectTypeOf, assert }) => {
class Parent extends Macroable {
foo: () => string
declare foo: () => string
bar = 'bar'
}

Expand All @@ -44,7 +44,7 @@ test.group('Macroable | macro', () => {

test('add a property as an arrow function', ({ expectTypeOf, assert }) => {
class Parent extends Macroable {
foo: () => string
declare foo: () => string
bar = 'bar'
}

Expand All @@ -62,7 +62,7 @@ test.group('Macroable | getter', () => {
let counter = 0

class Parent extends Macroable {
getCount: number
declare getCount: number
}

Parent.getter('getCount', function getCount() {
Expand All @@ -82,7 +82,7 @@ test.group('Macroable | getter', () => {
let counter = 0

class Parent extends Macroable {
getCount: number
declare getCount: number
}

Parent.getter(
Expand Down

0 comments on commit 8c7eb42

Please sign in to comment.