Skip to content

Commit

Permalink
🍴 Begin fork of Advanced Slides plugin
Browse files Browse the repository at this point in the history
- 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
ebullient committed Mar 10, 2024
1 parent 2d713ca commit f90f299
Show file tree
Hide file tree
Showing 1,150 changed files with 18,396 additions and 84,126 deletions.
8 changes: 6 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ root = true
[*]
charset = utf-8
insert_final_newline = true
indent_style = tab
trim_trailing_whitespace = true
indent_style = space
indent_size = 4
tab_width = 4
tab_width = 4

[*.md]
trim_trailing_whitespace = false
4 changes: 1 addition & 3 deletions .github/FUNDING.yml
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
29 changes: 25 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
about: 'Something doesn''t work or look right... '
title: "\U0001F41B "
labels: bug
assignees: ''

Expand All @@ -10,8 +10,29 @@ assignees: ''
**Describe the bug**
A clear and concise description of what the bug is.

**Samples to Reproduce**
Steps & Examples to reproduce the behavior:
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
about: 'It would be nice if... '
title: ""
labels: enhancement
assignees: ''

Expand Down
37 changes: 37 additions & 0 deletions .github/changelog.hbs
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}}
15 changes: 15 additions & 0 deletions .github/dependabot.yml
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"
43 changes: 43 additions & 0 deletions .github/workflows/build.yml
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
68 changes: 0 additions & 68 deletions .github/workflows/docs.yml

This file was deleted.

Loading

0 comments on commit f90f299

Please sign in to comment.