makepack 1.0.6 → 1.0.7
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
|
@@ -10,7 +10,7 @@ import { createRoot } from 'react-dom/client';
|
|
|
10
10
|
|
|
11
11
|
const App = () => {
|
|
12
12
|
return (
|
|
13
|
-
<div style={{fontFamily: '
|
|
13
|
+
<div style={{fontFamily: 'monospace,math, sans-serif', textAlign: 'center', marginTop: '50px' }}>
|
|
14
14
|
<h1>Welcome to makepack CLI!</h1>
|
|
15
15
|
<p>Edit <code>index.tsx</code> and save to reload.</p>
|
|
16
16
|
<a
|
package/src/index.js
CHANGED
|
@@ -18,7 +18,7 @@ program
|
|
|
18
18
|
program
|
|
19
19
|
.command("serve")
|
|
20
20
|
.option("-p, --port <number>", "Port number", "5000")
|
|
21
|
-
.option("-r, --root <file>", "root file"
|
|
21
|
+
.option("-r, --root <file>", "root file")
|
|
22
22
|
.description("Start the server")
|
|
23
23
|
.action(serve);
|
|
24
24
|
|