makepack 1.2.3 → 1.2.5

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/README.md CHANGED
@@ -1,6 +1,8 @@
1
- # MakePack CLI Documentation
1
+ <p align="center">
2
+ <a href="https://mui.com/core/" rel="noopener" target="_blank"><img width="120" src="https://api.mypiebd.com/uploads/2024/11/29/images/c31a5fc731a89c82fd0e846dd69a9936253385.png" alt="Material UI logo"></a>
3
+ </p>
2
4
 
3
- ## Overview
5
+ <h1 align="center">Makepack</h1>
4
6
 
5
7
  **MakePack** is a command-line interface (CLI) tool that helps you to quickly set up, build, and manage JavaScript, TypeScript, React, and React-TypeScript libraries for use in npm projects. With just a few simple commands, you can generate your own libraries, start a development server, or build and publish your project to the npm repository.
6
8
 
@@ -121,12 +123,19 @@ makepack pack --entry src/**/*.{tsx,ts,js,jsx} --publish
121
123
 
122
124
  This will build your library and publish it to npm.
123
125
 
124
- ## GitHub Repository
125
126
 
126
- For more details, open issues, or contribute to the project, visit the [MakePack GitHub Repository](https://github.com/devnax/makepack).
127
+ ## 🤝 Contributing
128
+
129
+ Contributions are welcome! Please check out the [contribution guidelines](https://github.com/devnax/makepack).
130
+
131
+ ---
132
+
133
+ ## 📄 License
134
+
135
+ This project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
127
136
 
128
137
  ---
129
138
 
130
- ## License
139
+ ## 📞 Support
131
140
 
132
- This project is licensed under the MIT License. See the LICENSE file for more information.
141
+ For help or suggestions, feel free to open an issue on [GitHub](https://github.com/devnax/makepack/issues) or contact us via [devnaxrul@gmail.com](mailto:devnaxrul@gmail.com).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "makepack",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
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": [
@@ -8,6 +8,7 @@ import projectJsx from "./files/project-jsx.js";
8
8
  import projectTs from "./files/project-ts.js";
9
9
  import projectTsx from "./files/project-tsx.js";
10
10
 
11
+ import inquirer from 'inquirer'
11
12
  import fs from "fs-extra"
12
13
  import path from "path"
13
14
  import readmeMd from "./files/readme.md.js";