occam-furtle 3.0.132 → 3.0.134
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -1
- package/.swcrc +0 -12
- package/bin/main.js +0 -15
- package/example.js +0 -55843
- package/index.html +0 -47
- package/test/Free and bound variables.ftl +0 -112
- package/test/context/file/nominal.js +0 -53
- package/test/helpers/context.js +0 -41
- package/test/helpers/customGrammar.js +0 -26
- package/test/helpers/file.js +0 -33
- package/test/helpers/nominal.js +0 -20
- package/test/helpers/terms.js +0 -53
- package/test/main.js +0 -53
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "occam-furtle",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.134",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/occam-furtle",
|
|
7
7
|
"description": "Occam's Furtle language.",
|
|
@@ -43,5 +43,9 @@
|
|
|
43
43
|
"watch": "npm run clean && npm run batch && npm run incremental",
|
|
44
44
|
"watch-debug": "npm run clean && npm run batch-debug && npm run incremental-debug"
|
|
45
45
|
},
|
|
46
|
+
"files": [
|
|
47
|
+
"src",
|
|
48
|
+
"lib"
|
|
49
|
+
],
|
|
46
50
|
"main": "./lib/index.js"
|
|
47
51
|
}
|
package/.swcrc
DELETED
package/bin/main.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
const express = require("express");
|
|
4
|
-
|
|
5
|
-
const { createLiveReloadHandler } = require("lively-cli");
|
|
6
|
-
|
|
7
|
-
const server = express(), ///
|
|
8
|
-
staticRouter = express.static("."),
|
|
9
|
-
liveReloadHandler = createLiveReloadHandler("./example.js");
|
|
10
|
-
|
|
11
|
-
server.use(staticRouter);
|
|
12
|
-
|
|
13
|
-
server.get("/live-reload", liveReloadHandler);
|
|
14
|
-
|
|
15
|
-
server.listen(8888);
|