Skip to content

Commit

Permalink
Remove global app state requirement and start making docs (#100)
Browse files Browse the repository at this point in the history
* Update esbuild

* Remove global app state requirement and start making docs
  • Loading branch information
KyleJune authored Aug 31, 2024
1 parent e8e2119 commit 9f35340
Show file tree
Hide file tree
Showing 45 changed files with 2,201 additions and 951 deletions.
2 changes: 1 addition & 1 deletion .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ coverage:
default:
informational: true
ignore:
- "example/public/**/*"
- "example/public/build/**/*"
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
app-directory:
description: The directory containing the application to deploy
type: string
default: '.'
default: ''
entrypoint:
description: The entrypoint file for running your application
type: string
Expand All @@ -29,7 +29,6 @@ jobs:
with:
deno-version: v1.x
- name: Build
working-directory: ${{ inputs.app-directory }}
run: deno task build-prod
- name: Deploy to Deno Deploy
uses: denoland/deployctl@v1
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
# Coverage
coverage

# Node modules
node_modules

# WIP
test-utils.tsx
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Contributing

To contribute, create an issue or comment on an existing issue you would like to
work on. All code contributions require test coverage and must pass
To contribute, create an issue or comment on an existing issue that you would
like to work on. All code contributions require test coverage and must pass
formatting/lint checks before being approved and merged.

## Prerequisites
Expand All @@ -27,3 +27,5 @@ To run the application in development mode with live reloading, use
This repository uses squash merging. If your branch is merged into main, you can
get your branch back up to date with `deno task git-rebase`. Alternatively, you
can delete your branch and create a new one off of the main branch.

To learn more about working on this framework, see the [documentation](docs).
25 changes: 12 additions & 13 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
MIT License

Copyright (c) 2023 Udibo
Copyright (c) 2024 Udibo

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Loading

0 comments on commit 9f35340

Please sign in to comment.