Compare commits

...

4 Commits

Author SHA1 Message Date
95a20df58b
enable publishing specific versions from workflow
All checks were successful
Build and test / build-and-test (18.x) (push) Successful in 15s
Build and test / build-and-test (20.x) (push) Successful in 17s
2025-04-20 13:50:02 -07:00
0452c5fcf0
0.2.1
All checks were successful
Build and test / build-and-test (18.x) (push) Successful in 1m13s
Build and test / build-and-test (20.x) (push) Successful in 18s
2025-04-20 13:18:15 -07:00
2636e42533
0.1.12
All checks were successful
Build and test / build-and-test (18.x) (push) Successful in 2m23s
Build and test / build-and-test (20.x) (push) Successful in 2m28s
2023-11-27 14:11:44 -08:00
1a09a51780
revert to color override; text not high-contrast enough on like backgrounds
Some checks failed
Build and test / build-and-test (20.x) (push) Waiting to run
Build and test / build-and-test (18.x) (push) Has been cancelled
2023-11-27 14:11:30 -08:00
4 changed files with 14 additions and 9 deletions

View File

@ -2,10 +2,12 @@
name: Build and publish
on:
- workflow_dispatch
# push:
# branches:
# - master
workflow_dispatch:
inputs:
version:
type: string
description: Semver to publish
required: true
jobs:
build-and-publish:
@ -33,4 +35,6 @@ jobs:
run: npm run tsc
- name: Publish package
run: npm publish
run: |
npm version ${{ inputs.version }} --allow-same-version --git-tag-version false
npm publish

View File

@ -58,7 +58,8 @@ figure[data-lang].big svg {
max-height: none !important;
} */
figure:is([data-lang='pikchr'], [data-lang='nomnoml'], [data-lang='bytefield']) svg text:not([fill^='var']) {
/* figure:is([data-lang='pikchr'], [data-lang='nomnoml'], [data-lang='bytefield']) svg text:not([fill^='var']) { */
figure:is([data-lang='pikchr'], [data-lang='nomnoml'], [data-lang='bytefield']) svg text {
fill: var(--theme-text-body);
}

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@doc-utils/docs2website",
"version": "0.1.11",
"version": "0.2.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@doc-utils/docs2website",
"version": "0.1.11",
"version": "0.2.1",
"dependencies": {
"@doc-utils/color-themes": "^0.2.0",
"@doc-utils/jsonschema2markdown": "^0.1.1",

View File

@ -1,6 +1,6 @@
{
"name": "@doc-utils/docs2website",
"version": "0.1.11",
"version": "0.2.1",
"publishConfig": {
"registry": "https://gitea.jbrumond.me/api/packages/doc-utils/npm/"
},