file2site 0.1.1 → 0.1.2
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 -2
- package/dist/cli.js +0 -97310
- package/dist/cli.js.map +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "file2site",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Zero-config CLI that turns a single Markdown or HTML file into a beautiful live website.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"LICENSE"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "esbuild src/cli.ts --bundle --platform=node --format=cjs --outfile=dist/cli.cjs --sourcemap --banner:js=\"#!/usr/bin/env node\"",
|
|
16
|
+
"build": "rimraf dist && esbuild src/cli.ts --bundle --platform=node --format=cjs --outfile=dist/cli.cjs --sourcemap --banner:js=\"#!/usr/bin/env node\"",
|
|
17
17
|
"dev": "tsx src/cli.ts",
|
|
18
18
|
"typecheck": "tsc --noEmit",
|
|
19
19
|
"prepublishOnly": "npm run build && npm run typecheck"
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"@types/express": "^4.17.21",
|
|
36
36
|
"@types/node": "^20.11.19",
|
|
37
37
|
"esbuild": "^0.20.2",
|
|
38
|
+
"rimraf": "^5.0.7",
|
|
38
39
|
"tsx": "^4.7.1",
|
|
39
40
|
"typescript": "^5.4.5"
|
|
40
41
|
},
|