project-startup 1.0.0 → 1.0.1
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/bin/cli.js +3 -3
- package/package.json +2 -2
package/bin/cli.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
const path = require("path")
|
|
4
|
-
const
|
|
5
|
-
const
|
|
3
|
+
const path = require("path")
|
|
4
|
+
const prompts = require('prompts');
|
|
5
|
+
const fs = require('fs-extra');
|
|
6
6
|
|
|
7
7
|
async function main() {
|
|
8
8
|
const response = await prompts({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "project-startup",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Minimal session-based auth starter using Express, MySQL, React, Vite, and React Router.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,4 +25,4 @@
|
|
|
25
25
|
"url": "https://github.com/D3lt-a/project-starup/issues"
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/D3lt-a/project-starup#readme"
|
|
28
|
-
}
|
|
28
|
+
}
|