Skip to content

Commit b621d6b

Browse files
committed
Update pages to use @raptor/kernel from @raptor/framework.
1 parent a789b5a commit b621d6b

8 files changed

Lines changed: 29 additions & 31 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ body:
6363
label: Minimal Reproduction
6464
description: Provide the smallest amount of code that reproduces the issue
6565
placeholder: |
66-
import { Kernel } from "@raptor/framework";
66+
import { Kernel } from "@raptor/kernel";
6767
import { Validator } from "@raptor/validator";
6868
6969
const app = new Kernel();

CODE_OF_CONDUCT.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
# Code of Conduct
22

3-
This package is part of the
4-
[Raptor Framework](https://github.com/raptor-js/framework) project.
3+
This package is part of the [Raptor](https://github.com/raptor-js) project.
54

65
Please refer to the main framework
7-
[Code of Conduct](https://github.com/raptor-js/framework/blob/main/CODE_OF_CONDUCT.md)
6+
[Code of Conduct](https://github.com/raptor-js/kernel/blob/main/CODE_OF_CONDUCT.md)
87
for our community guidelines and standards.
98

109
All Raptor packages and their communities follow the same Code of Conduct to
1110
ensure a welcoming and inclusive environment for everyone.
1211

1312
## Quick Links
1413

15-
- [Framework Repository](https://github.com/raptor-js/framework)
16-
- [Code of Conduct](https://github.com/raptor-js/framework/blob/main/CODE_OF_CONDUCT.md)
17-
- [Report an Issue](https://github.com/raptor-js/framework/issues/new/choose)
14+
- [Kernel Repository](https://github.com/raptor-js/kernel)
15+
- [Code of Conduct](https://github.com/raptor-js/kernel/blob/main/CODE_OF_CONDUCT.md)
16+
- [Report an Issue](https://github.com/raptor-js/kernel/issues/new/choose)

CONTRIBUTING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
Thank you for your interest in contributing to the Raptor ecosystem!
44

5-
This package is part of the
6-
[Raptor Framework](https://github.com/raptor-js/framework) project. Please see
7-
the main framework
8-
[contributing documentation](https://github.com/raptor-js/framework/blob/main/CONTRIBUTING.md)
5+
This package is part of the [Raptor](https://github.com/raptor-js) project.
6+
Please see the main framework
7+
[contributing documentation](https://github.com/raptor-js/kernel/blob/main/CONTRIBUTING.md)
98
for guidelines on:
109

1110
- Reporting issues
@@ -19,7 +18,7 @@ outlined in the main repository.
1918

2019
## Quick Links
2120

22-
- [Framework Repository](https://github.com/raptor-js/framework)
23-
- [Contributing Guide](https://github.com/raptor-js/framework/blob/main/CONTRIBUTING.md)
21+
- [Kernel Repository](https://github.com/raptor-js/kernel)
22+
- [Contributing Guide](https://github.com/raptor-js/kernel/blob/main/CONTRIBUTING.md)
2423
- [Documentation](https://raptorjs.com)
25-
- [Report an Issue](https://github.com/raptor-js/framework/issues/new/choose)
24+
- [Report an Issue](https://github.com/raptor-js/kernel/issues/new/choose)

deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@raptor/pages",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"exports": "./mod.ts",
55
"publish": {
66
"exclude": [
@@ -22,8 +22,8 @@
2222
"lock": true,
2323
"imports": {
2424
"@mdx-js/mdx": "npm:@mdx-js/mdx@^3.1.1",
25-
"@raptor/framework": "jsr:@raptor/framework@^0.19.0",
26-
"@raptor/router": "jsr:@raptor/router@^0.20.0",
25+
"@raptor/kernel": "jsr:@raptor/kernel@^0.19.0",
26+
"@raptor/router": "jsr:@raptor/router@^0.21.0",
2727
"@std/assert": "jsr:@std/assert@^1.0.19",
2828
"gray-matter": "npm:gray-matter@^4.0.3",
2929
"mdast-util-to-string": "npm:mdast-util-to-string@^4.0.0",

deno.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Middleware } from "@raptor/framework";
1+
import type { Middleware } from "@raptor/kernel";
22

33
import Pages from "./pages.ts";
44
import type { Config } from "./config.ts";

src/locator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { join } from "node:path";
2-
import { ServerError } from "@raptor/framework";
2+
import { ServerError } from "@raptor/kernel";
33

44
import type { Config } from "./config.ts";
55

src/pages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
HttpMethod,
66
type Middleware,
77
ServerError,
8-
} from "@raptor/framework";
8+
} from "@raptor/kernel";
99

1010
import Locator from "./locator.ts";
1111
import Renderer from "./renderer.ts";

0 commit comments

Comments
 (0)