Skip to content

Commit afb86cc

Browse files
committed
initial commit; no autodeploy support yet
1 parent ce19e23 commit afb86cc

Some content is hidden

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

81 files changed

+18947
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.html
2+
build/
3+
node_modules/

Makefile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
all:
2+
scribble \
3+
++style ./node_modules/codemirror/lib/codemirror.css \
4+
++extra ./node_modules/codemirror/lib/codemirror.js \
5+
++extra ./node_modules/codemirror/addon/runmode/runmode.js \
6+
\
7+
++extra ./node_modules/pyret-codemirror-mode/mode/pyret.js \
8+
++style ./node_modules/pyret-codemirror-mode/css/pyret.css \
9+
++extra src/hilite.js \
10+
\
11+
++style src/styles.css \
12+
--prefix src/myprefix.html \
13+
\
14+
--dest ./build/ \
15+
--dest-name docs \
16+
++arg "$(VERSION)" \
17+
--htmls src/index.scrbl

package.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "pyret-docs",
3+
"version": "0.0.0",
4+
"dependencies": {
5+
"codemirror": "^5.x",
6+
"pyret-codemirror-mode": "git://github.com/brownplt/pyret-codemirror-mode"
7+
},
8+
"scripts": {
9+
"build": "make"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git://github.com/brownplt/pyret-docs"
14+
},
15+
"keywords": [
16+
"programming",
17+
"language",
18+
"education",
19+
"scripting",
20+
"functional",
21+
"documentation"
22+
],
23+
"author": "Joe Gibbs Politz",
24+
"license": "Apache-2.0",
25+
"bugs": {
26+
"url": "https://github.com/brownplt/pyret-docs/issues"
27+
},
28+
"homepage": "https://www.pyret.org"
29+
}

0 commit comments

Comments
 (0)