File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ jobs:
22
22
- name : Check styles
23
23
run : npm ci && npm run tsc && npm run check
24
24
working-directory : styles
25
+ - run : npm ci && npm run tsc && npm run check && npm run build
26
+ working-directory : app
25
27
- name : Generate styles typedoc
26
28
run : npx typedoc src/index.ts --out ../app/dist/typedoc
27
29
working-directory : styles
28
- - run : npm ci && npm run tsc && npm run check && npm run build
29
- working-directory : app
30
30
- run : python .github/check_examples.py
31
31
- uses : peaceiris/actions-gh-pages@v3
32
32
if : ${{ github.ref == 'refs/heads/main' }}
Original file line number Diff line number Diff line change 1
1
import { LayerSpecification } from "@maplibre/maplibre-gl-style-spec" ;
2
2
import { labels_layers , nolabels_layers } from "./base_layers" ;
3
3
import { language_script_pairs } from "./language" ;
4
- import themes , { Theme } from "./themes" ;
4
+ import themes , { Theme , Pois } from "./themes" ;
5
5
6
6
export { language_script_pairs } ;
7
+ export type { Theme , Pois } ;
7
8
8
9
export default function (
9
10
source : string ,
You can’t perform that action at this time.
0 commit comments