Skip to content

Commit 0fef69e

Browse files
committed
Set up documentation generation
1 parent c097343 commit 0fef69e

Some content is hidden

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

47 files changed

+523
-119
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
node_modules/
21
npm-debug.*
2+
docs/
3+
node_modules/
34
out/
45
raw/

bin/asc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
/**
2-
* @file Compiler frontend for node.js
2+
* Compiler frontend for node.js
33
*
44
* Uses the low-level API exported from src/index.ts so it works with the compiler compiled to
55
* JavaScript as well as the compiler compiled to WebAssembly (eventually). Runs the sources
66
* directly through ts-node if distribution files are not present (indicated by a `-dev` version).
77
*
88
* Can also be packaged as a bundle suitable for in-browser use with the standard library injected
99
* in the build step. See dist/asc.js for the bundle and webpack.config.js for building details.
10+
*
11+
* @module asc
1012
*/
1113

1214
const fs = require("fs");

dist/asc.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.

dist/asc.js.map

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

dist/assemblyscript.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.

dist/assemblyscript.js.map

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)