Skip to content

Commit b792e77

Browse files
2024-06-12 - Bump to codebase
1 parent 08b4717 commit b792e77

11 files changed

Lines changed: 631 additions & 563 deletions

.github/scripts/release.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@ packageData.version = newVersion;
3131
jsonfile.writeFileSync(packageFile, packageData, { spaces: 2 });
3232

3333
const filesToUpdate = [
34-
"./dist/docsify-sidebar.js",
35-
"./dist/docsify-sidebar.min.js"
34+
"./dist/docsify-charty.js",
35+
"./dist/docsify-charty.min.js",
36+
"./dist/docsify-charty.css",
37+
"./dist/docsify-charty.min.css",
3638
];
3739

3840
filesToUpdate.forEach(filePath => {

.github/workflows/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v5
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
# Upload entire repository
40+
path: './docs'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
.markdownlint.json
33
.DS_Store
44
*babel.js
5-
*.min.js
65
.gitattributes
76
node_modules

.markdownlintrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
## 3.0.0 - Wed Jun 12 2024
3+
4+
### Breaking Changes
5+
6+
- Clenaup to code
7+
- Bumped version

dist/docsify-charty.css

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
/*
2-
* docsify-charty.css v2.0.2 (https://markbattistella.github.io/docsify-charty/)
3-
* Copyright (c) 2021 Mark Battistella (@markbattistella)
4-
* Licensed under MIT
5-
*/
6-
7-
1+
/*! docsify-charty 3.0.0 | (c) Mark Battistella */
82

93
/*
104
* core
@@ -35,9 +29,6 @@
3529
font-size: calc( var(--charty-size-baseline) * 1px );
3630
line-height: calc( var(--charty-size-baseline) * 1px * 1.5 );
3731
color: var(--charty-colour-text);
38-
39-
/* printing colour */
40-
color-adjust: exact;
4132
}
4233

4334
/* mode: dark */

dist/docsify-charty.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
/*
2-
* docsify-charty.js v2.0.2 (https://markbattistella.github.io/docsify-charty/)
3-
* Copyright (c) 2021 Mark Battistella (@markbattistella)
4-
* Licensed under MIT
5-
*/
1+
/*! docsify-charty 3.0.0 | (c) Mark Battistella */
2+
63
//
74
// MARK: - safety first
85
//

dist/docsify-charty.min.css

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

dist/docsify-charty.min.js

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

0 commit comments

Comments
 (0)