Skip to content

Commit 8a6f5ed

Browse files
committed
sqlite
1 parent 49d6886 commit 8a6f5ed

File tree

95 files changed

+310
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+310
-212
lines changed

Makefile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,17 @@ build:
66
mv docz/build/ docs
77
cp CNAME docs
88

9+
.PHONY: init
10+
init:
11+
cd docz; npm i; cd ..
12+
13+
.PHONY: dev
14+
dev:
15+
cd docz; npm run start; cd ..
16+
917
.PHONY: serve
1018
serve:
11-
cd docs; python -mSimpleHTTPServer || python3 -mhttp.server; cd -
19+
npx -y http-server docs
1220

1321
.PHONY: spell
1422
spell:

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
11
# SheetJS CE Docs
22

33
Hosted URL: <https://docs.sheetjs.com>
4+
5+
## Development
6+
7+
`docz/version.js` exports a version number for use in docs pages.
8+
9+
Build commands:
10+
11+
```bash
12+
$ make init # install dependencies
13+
$ make # build static site
14+
$ make serve # serve static site
15+
16+
$ make dev # run dev server
17+
$ make spell # spell check (.spelling custom dictionary)
18+
$ make graph # build format graph and legend
19+
```
20+
21+
## Live Demos
22+
23+
**Imports do not work from live codeblocks!**
24+
25+
<https://cdn.sheetjs.com/xlsx-latest/package/dist/xlsx.full.min.js> is loaded
26+
on each page, making the `XLSX` variable available to live blocks.
27+
28+
Specific pages can load scripts using the `head` component:
29+
30+
```html
31+
<head>
32+
<script src="https://cdn.sheetjs.com/xspreadsheet/xlsxspread.min.js"></script>
33+
</head>
34+
```
35+

docs/404.html

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

docs/assets/js/06f5a587.1f426e27.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/assets/js/06f5a587.ffda2058.js

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

docs/assets/js/10e2f5d4.18f6818f.js renamed to docs/assets/js/10e2f5d4.205118fa.js

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

0 commit comments

Comments
 (0)