Skip to content

Commit e410708

Browse files
authored
Merge branch 'main' into init-cleanup-twind
2 parents 1c5f2f5 + d2da471 commit e410708

45 files changed

Lines changed: 1091 additions & 1335 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Contributing Guidelines
2+
3+
## Submitting a pull request
4+
5+
First, please be sure to
6+
[install Puppeteer](https://github.com/lucacasonato/deno-puppeteer#installation).
7+
Then, please ensure `deno task ok` is run and successfully passes.

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ jobs:
5050

5151
- name: Run tests
5252
run: deno task test
53+
54+
- name: Check docs
55+
run: deno task check:docs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ docs.
6565
## Contributing
6666

6767
We appreciate your help! To contribute, please read our
68-
[contributing instructions](https://deno.com/manual/references/contributing#submitting-a-pr-to-fresh).
68+
[contributing guideline](./.github/CONTRIBUTING.md).
6969

7070
## Adding your project to the showcase
7171

deno.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"build-www": "deno task --cwd=www build",
2323
"screenshot": "deno run -A www/utils/screenshot.ts",
2424
"check:types": "deno check src/**/*.ts src/**/*.tsx tests/**/*.ts tests/**/*.tsx update/**/*.ts plugin-tailwindcss/**/*.ts init/**/*.ts",
25+
"check:docs": "deno run -A tools/check_docs.ts",
2526
"ok": "deno fmt --check && deno lint && deno task check:types && deno task test",
2627
"test:www": "deno test -A www/main_test.*",
2728
"release": "deno run -A tools/release.ts"
@@ -40,6 +41,9 @@
4041
"exclude": ["**/*_test.*", "src/__OLD/**", "*.todo"]
4142
},
4243
"imports": {
44+
"@deno/doc": "jsr:@deno/doc@^0.172.0",
45+
"@std/collections": "jsr:@std/collections@^1.0.11",
46+
"@std/http": "jsr:@std/http@^1.0.15",
4347
"fresh": "jsr:@fresh/core@^2.0.0-alpha.26",
4448
"preact": "npm:preact@^10.25.1",
4549
"preact-render-to-string": "npm:preact-render-to-string@^6.5.11",
@@ -61,7 +65,7 @@
6165
"@std/semver": "jsr:@std/semver@1",
6266
"@std/streams": "jsr:@std/streams@1",
6367

64-
"@astral/astral": "jsr:@astral/astral@^0.4.6",
68+
"@astral/astral": "jsr:@astral/astral@^0.5.2",
6569
"@marvinh-test/fresh-island": "jsr:@marvinh-test/fresh-island@^0.0.1",
6670
"linkedom": "npm:linkedom@^0.16.11",
6771
"@std/async": "jsr:@std/async@1",

0 commit comments

Comments
 (0)