This commit is contained in:
Jonny Gerig Meyer 2023-01-09 16:10:09 -05:00
parent 3840204147
commit ba7ce61757
No known key found for this signature in database
GPG Key ID: FB602F738A872F7F
3 changed files with 17 additions and 16 deletions

View File

@ -10,19 +10,19 @@ concurrency:
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Test
run: yarn test
# test:
# name: Test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version-file: .nvmrc
# cache: yarn
# - name: Install dependencies
# run: yarn install --immutable
# - name: Test
# run: yarn test
lint:
name: Lint

View File

@ -144,7 +144,7 @@ namespace :sass do
sh %{npm install}
sh %{ln -sf ../.language/node_modules ../tool/node_modules}
sh %{npx typedoc \
--plugin ../tool/typedoc-theme.ts --theme sass-site \
--plugin ../tool/typedoc-theme.js --theme sass-site \
--out ../source/documentation/js-api \
--cleanOutputDir \
js-api-doc/index.d.ts

View File

@ -1,9 +1,10 @@
import {
/* eslint-disable @typescript-eslint/no-var-requires */
const {
DefaultTheme,
DefaultThemeRenderContext,
JSX,
UrlMapping,
} from 'typedoc';
} = require('typedoc');
function bind(fn, first) {
return (...r) => fn(first, ...r);