-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🍴 Begin fork of Advanced Slides plugin
- Current reveal.js - Change from express to fastify - remove lodash - refactor source tree - Prettier: 80 chars; spaces; ... - remove duplicate content (themes from reveal.js)
- Loading branch information
Showing
1,150 changed files
with
18,396 additions
and
84,126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
# These are supported funding model platforms | ||
|
||
github: MSzturc | ||
custom: https://www.buymeacoffee.com/ebullient |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{{#each releases}} | ||
{{#if href}} | ||
###{{#unless major}}#{{/unless}} [{{title}}]({{href}}) | ||
{{else}} | ||
#### {{title}} | ||
{{/if}} | ||
|
||
{{#if tag}} | ||
> {{niceDate}} | ||
{{/if}} | ||
|
||
{{#if summary}} | ||
{{summary}} | ||
{{/if}} | ||
|
||
{{#if fixes}} | ||
Fixes: | ||
{{#each fixes}} | ||
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{commit.subject}} {{#each fixes}}#{{id}} {{/each}} | ||
{{/each}} | ||
{{/if}} | ||
|
||
{{#if commits}} | ||
Commits: | ||
{{#each commits}} | ||
- {{#if breaking}}**Breaking change:** {{/if}}{{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}} | ||
{{/each}} | ||
{{/if}} | ||
|
||
{{#if merges}} | ||
PRs: | ||
{{#each merges}} | ||
- #{{id}} {{#if commit.breaking}}**Breaking change:** {{/if}}{{message}} | ||
{{/each}} | ||
{{/if}} | ||
|
||
{{/each}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: CI Test | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- '**.ts' | ||
- '**.json' | ||
- '**.scss' | ||
- '**.css' | ||
pull_request: | ||
branches: [ main ] | ||
paths: | ||
- '**.ts' | ||
- '**.json' | ||
- '**.scss' | ||
- '**.css' | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.5' | ||
cache: 'pnpm' | ||
|
||
- name: Build and Test | ||
id: build | ||
run: | | ||
pnpm it | ||
pnpm run build |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.