File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ export { defineConfig } from './src/define_config.js'
1818export { RouteResource } from './src/router/resource.js'
1919export { BriskRoute } from './src/router/brisk.js'
2020export { HttpContext } from './src/http_context/main.js'
21- export * as errors from './src/exceptions/main .js'
21+ export * as errors from './src/exceptions.js'
Original file line number Diff line number Diff line change 88 */
99
1010import { createError , Exception } from '@poppinss/utils'
11- import type { HttpContext } from '.. /http_context/main.js'
11+ import type { HttpContext } from './http_context/main.js'
1212
1313export const E_ROUTE_NOT_FOUND = createError < [ method : string , url : string ] > (
1414 'Cannot %s:%s' ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import { Redirect } from './redirect.js'
2828import type { Router } from './router/main.js'
2929import type { HttpContext } from './http_context/main.js'
3030import { CookieSerializer } from './cookies/serializer.js'
31- import { E_HTTP_REQUEST_ABORTED } from './exceptions/main .js'
31+ import { E_HTTP_REQUEST_ABORTED } from './exceptions.js'
3232import type {
3333 CastableHeader ,
3434 CookieOptions ,
Original file line number Diff line number Diff line change 77 * file that was distributed with this source code.
88 */
99
10- import * as errors from '../../exceptions/main .js'
10+ import * as errors from '../../exceptions.js'
1111import type { RouteJSON } from '../../types/route.js'
1212
1313/**
Original file line number Diff line number Diff line change 99
1010import type { ContainerResolver } from '@adonisjs/fold'
1111
12- import * as errors from '../../exceptions/main .js'
12+ import * as errors from '../../exceptions.js'
1313import type { Router } from '../../router/main.js'
1414import type { HttpContext } from '../../http_context/main.js'
1515
Original file line number Diff line number Diff line change 88 */
99
1010import { test } from '@japa/runner'
11- import { E_HTTP_EXCEPTION } from '../../src/exceptions/main .js'
11+ import { E_HTTP_EXCEPTION } from '../../src/exceptions.js'
1212
1313test . group ( 'Http exception' , ( ) => {
1414 test ( 'create http exception with an error object' , ( { assert } ) => {
You can’t perform that action at this time.
0 commit comments