highmark-markdown 1.2.72 → 1.2.73
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/.aiignore +0 -12
- package/.swcrc +0 -12
- package/bin/main.js +0 -15
- package/example.js +0 -51075
- package/font/Inconsolata-Bold.woff2 +0 -0
- package/font/Inconsolata-Regular.woff2 +0 -0
- package/font/STIXTwoMath-Regular.woff2 +0 -0
- package/font/STIXTwoText-Bold.woff2 +0 -0
- package/font/STIXTwoText-BoldItalic.woff2 +0 -0
- package/font/STIXTwoText-Italic.woff2 +0 -0
- package/font/STIXTwoText-Regular.woff2 +0 -0
- package/index.html +0 -56
- package/ttf/Inconsolata-Bold.ttf +0 -0
- package/ttf/Inconsolata-Regular.ttf +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "highmark-markdown",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.73",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/highmark-markdown",
|
|
7
7
|
"description": "Highmark's Markdown and Markdown Style languages.",
|
|
@@ -40,5 +40,9 @@
|
|
|
40
40
|
"watch": "npm run clean && npm run batch && npm run incremental",
|
|
41
41
|
"watch-debug": "npm run clean && npm run batch-debug && npm run incremental-debug"
|
|
42
42
|
},
|
|
43
|
+
"files": [
|
|
44
|
+
"src",
|
|
45
|
+
"lib"
|
|
46
|
+
],
|
|
43
47
|
"main": "./lib/index.js"
|
|
44
48
|
}
|
package/.aiignore
DELETED
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
|
-
reloadHandler = createLiveReloadHandler("./example.js");
|
|
10
|
-
|
|
11
|
-
server.use(staticRouter);
|
|
12
|
-
|
|
13
|
-
server.get("/live-reload", reloadHandler);
|
|
14
|
-
|
|
15
|
-
server.listen(8888);
|