UNPKG
altair-static
Version:
latest (8.2.2)
8.2.2
8.2.1
8.2.0
8.1.6
8.1.5
8.1.4
8.1.3
8.1.2
8.1.1
8.1.0
8.0.5
8.0.4
8.0.3
8.0.2
8.0.1
8.0.0
7.3.6
7.3.5
7.3.4
7.3.3
7.3.0
7.2.4
7.2.3
7.2.2
7.2.1
7.2.0
7.1.0
7.0.1
7.0.0
6.4.2
6.4.1
6.4.0
6.3.1
6.3.0
6.2.0
6.1.0
6.0.2
6.0.1
6.0.0
5.2.14
5.2.13
5.2.12
5.2.11
5.2.10
5.2.9
5.2.8
5.2.7
5.2.6
5.2.5
5.2.4
5.2.3
5.2.2
5.2.1
5.2.0
5.1.0
5.0.28
5.0.25
5.0.24
5.0.23
5.0.22
5.0.21
5.0.20
5.0.19
5.0.18
5.0.17
5.0.16
5.0.15
5.0.14
5.0.13
5.0.12
5.0.9
5.0.8
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.0
4.6.4
4.6.2
4.6.1
4.6.0
4.5.3
4.5.2
4.5.1
4.5.0
4.4.2
4.4.1
4.4.0
4.3.1
4.3.0
4.2.2
4.2.1
4.2.0
4.1.0
4.0.11
4.0.10
4.0.9
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.2.2
3.2.1
3.2.0
3.1.0
3.0.0
2.5.2
2.5.1
2.5.0
2.4.13
2.4.12
2.4.11
2.4.10
2.4.9
2.4.8
2.4.7
2.4.6
2.4.5
2.4.3
2.4.2
2.4.0
2.3.8
2.3.7
2.3.6
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.2
2.2.1
2.2.0
2.1.9
2.1.8
2.1.7
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.0.7
2.0.6
2.0.5
2.0.3
2.0.2-alphaz.0
2.0.2-alpha.5
2.0.2-alpha.2
2.0.2-alpha.1
2.0.2-alpha.0
2.0.2-2.0.2-alpha.7.0
2.0.1
2.0.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Static package for altair graphql client
github.com/altair-graphql/altair
altair-graphql/altair
altair-static
/
src
/
get-altair-html.ts
8 lines
(6 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ readFileSync }
from
'fs'
;
import
{ resolve }
from
'path'
;
import
{ getDistDirectory }
from
'./get-dist'
;
export
default
function
getAltairHtml
(
) {
return
readFileSync
(
resolve
(
getDistDirectory
(),
'index.html'
),
'utf8'
); }