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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "occam-furtle",
3
3
  "author": "James Smith",
4
- "version": "3.0.132",
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
@@ -1,12 +0,0 @@
1
- {
2
- "jsc": {
3
- "parser": {
4
- "syntax": "ecmascript",
5
- "jsx": true
6
- },
7
- "target": "es2022"
8
- },
9
- "module": {
10
- "type": "commonjs"
11
- }
12
- }
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);