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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "makepack",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "description": "A CLI tool to create, build, and manage JavaScript, TypeScript, React, and React-TypeScript libraries for npm projects.",
6
6
  "categories": [
@@ -10,7 +10,7 @@ import { createRoot } from 'react-dom/client';
10
10
 
11
11
  const App = () => {
12
12
  return (
13
- <div style={{fontFamily: 'vardana', textAlign: 'center', marginTop: '50px' }}>
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", path.join(process.cwd(), "/serve"))
21
+ .option("-r, --root <file>", "root file")
22
22
  .description("Start the server")
23
23
  .action(serve);
24
24