highmark-cli 0.0.61 → 0.0.63
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 +3 -26
- package/.swcrc +0 -11
- package/index.html +0 -46
- package/lib/index.js +0 -3
- package/src/index.js +0 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "highmark-cli",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.63",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/highmark-cli",
|
|
7
7
|
"description": "Extensible, styleable Markdown.",
|
|
@@ -11,32 +11,9 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"argumentative": "^2.0.25",
|
|
14
|
-
"
|
|
15
|
-
"necessary": "^13.1.4",
|
|
16
|
-
"occam-dom": "^3.1.91",
|
|
17
|
-
"occam-lexers": "^19.0.67",
|
|
18
|
-
"occam-parsers": "^19.0.79"
|
|
14
|
+
"necessary": "^13.3.1"
|
|
19
15
|
},
|
|
20
|
-
"
|
|
21
|
-
"@swc/core": "^1.2.50",
|
|
22
|
-
"esbuild": "^0.9.2",
|
|
23
|
-
"express": "^4.17.1",
|
|
24
|
-
"lively-cli": "^2.0.52",
|
|
25
|
-
"watchful-cli": "^1.7.44"
|
|
26
|
-
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"clean": "rm -rf ./lib",
|
|
29
|
-
"watchful": "watchful -m --transpiler=swc --source-directory=./src --lib-directory=./lib --pause=100",
|
|
30
|
-
"batch": "npm run watchful batch --",
|
|
31
|
-
"batch-debug": "npm run watchful batch -- --debug",
|
|
32
|
-
"incremental": "npm run watchful incremental --",
|
|
33
|
-
"incremental-debug": "npm run watchful incremental -- --debug",
|
|
34
|
-
"build": "npm run clean && npm run batch",
|
|
35
|
-
"build-debug": "npm run clean && npm run batch-debug",
|
|
36
|
-
"watch": "npm run clean && npm run batch && npm run incremental",
|
|
37
|
-
"watch-debug": "npm run clean && npm run batch-debug && npm run incremental-debug"
|
|
38
|
-
},
|
|
39
|
-
"main": "./lib/index",
|
|
16
|
+
"scripts": {},
|
|
40
17
|
"bin": {
|
|
41
18
|
"highmark": "./highmark.js"
|
|
42
19
|
}
|
package/.swcrc
DELETED
package/index.html
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<title>Highmark CLI</title>
|
|
5
|
-
<style>
|
|
6
|
-
|
|
7
|
-
*,
|
|
8
|
-
*::after,
|
|
9
|
-
*::before {
|
|
10
|
-
border: 0;
|
|
11
|
-
margin: 0;
|
|
12
|
-
padding: 0;
|
|
13
|
-
box-sizing: border-box;
|
|
14
|
-
line-height: 1;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
html {
|
|
18
|
-
font-size: 10px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
</style>
|
|
22
|
-
</head>
|
|
23
|
-
<body>
|
|
24
|
-
|
|
25
|
-
<script src="example.js"> </script>
|
|
26
|
-
|
|
27
|
-
<script>
|
|
28
|
-
|
|
29
|
-
var xmlHttpRequest = new XMLHttpRequest();
|
|
30
|
-
|
|
31
|
-
xmlHttpRequest.onreadystatechange = function() {
|
|
32
|
-
if (xmlHttpRequest.readyState == 4) {
|
|
33
|
-
if (xmlHttpRequest.status == 200) {
|
|
34
|
-
location.reload();
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
xmlHttpRequest.open("GET", "/live-reload");
|
|
40
|
-
|
|
41
|
-
xmlHttpRequest.send();
|
|
42
|
-
|
|
43
|
-
</script>
|
|
44
|
-
|
|
45
|
-
</body>
|
|
46
|
-
</html>
|
package/lib/index.js
DELETED
package/src/index.js
DELETED