easy 24.1.2 → 24.1.4

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": "easy",
3
3
  "author": "James Smith",
4
- "version": "24.1.2",
4
+ "version": "24.1.4",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/easy",
7
7
  "description": "Elements that abstract away from the DOM.",
@@ -14,7 +14,7 @@
14
14
  "esbuild": "0.11.14",
15
15
  "express": "^4.17.1",
16
16
  "lively-cli": "^2.0.77",
17
- "watchful-cli": "^1.7.67"
17
+ "watchful-cli": "^1.7.83"
18
18
  },
19
19
  "scripts": {
20
20
  "start": "node ./bin/main.js",
@@ -29,5 +29,9 @@
29
29
  "watch": "npm run clean && npm run batch && npm run incremental",
30
30
  "watch-debug": "npm run clean && npm run batch-debug && npm run incremental-debug"
31
31
  },
32
+ "files": [
33
+ "src",
34
+ "lib"
35
+ ],
32
36
  "main": "./lib/index.js"
33
37
  }
package/.aiignore DELETED
@@ -1,12 +0,0 @@
1
- .idea
2
- .DS_Store
3
- node_modules
4
- npm-debug.log
5
- package-lock.json
6
-
7
- .git
8
- .swcrc
9
- .gitignore
10
- lib
11
- license.txt
12
- example.js
package/.swcrc DELETED
@@ -1,12 +0,0 @@
1
- {
2
- "module": {
3
- "type": "commonjs"
4
- },
5
- "jsc": {
6
- "target": "es2022",
7
- "parser": {
8
- "syntax": "ecmascript",
9
- "jsx": true
10
- }
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);