@anthonylzq/simba.js 2.1.0 → 2.1.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/README.md +0 -6
- package/lib/index.js +1 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -30,12 +30,6 @@ npm i -g @anthonylzq/simba.js
|
|
|
30
30
|
|
|
31
31
|
## Usage
|
|
32
32
|
|
|
33
|
-
<!-- Also, if you don't want to install it globally, you can use npx as follows:
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
npx simba.js
|
|
37
|
-
``` -->
|
|
38
|
-
|
|
39
33
|
As developer you have two main options to create your new project, one is by running:
|
|
40
34
|
|
|
41
35
|
```bash
|
package/lib/index.js
CHANGED
|
@@ -9,7 +9,7 @@ const argv = yargs(hideBin(process.argv))
|
|
|
9
9
|
.version(false)
|
|
10
10
|
// Pending to test it using npx
|
|
11
11
|
.usage(
|
|
12
|
-
'simba [options] (if you it installed globally) or only simba if you want to be asked for the options one by one'
|
|
12
|
+
'"simba [options]" (if you it installed globally) or only "simba -q" if you want to be asked for the options one by one'
|
|
13
13
|
)
|
|
14
14
|
.example(
|
|
15
15
|
"simba -N 'Project Name' -D 'Project description' -a Anthony -e sluzquinosa@uni.pe"
|
|
@@ -46,7 +46,6 @@ const argv = yargs(hideBin(process.argv))
|
|
|
46
46
|
.nargs('f', 1)
|
|
47
47
|
.describe('f', 'Main file of the project')
|
|
48
48
|
.alias('q', 'questions')
|
|
49
|
-
.nargs('q', 1)
|
|
50
49
|
.describe(
|
|
51
50
|
'q',
|
|
52
51
|
'Whether or not you want to be asked to answer the questions related to the project one by one'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthonylzq/simba.js",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "set up a modern backend app by running one command",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"directories": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"author": "AnthonyLzq",
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"cli-progress": "^3.
|
|
34
|
+
"cli-progress": "^3.10.0",
|
|
35
35
|
"colors": "^1.4.0",
|
|
36
36
|
"readline-sync": "^1.4.10",
|
|
37
37
|
"underscore": "^1.13.2",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"dotenv": "^14.3.2",
|
|
42
|
-
"eslint": "^8.
|
|
42
|
+
"eslint": "^8.7.0",
|
|
43
43
|
"eslint-config-prettier": "^8.3.0",
|
|
44
44
|
"eslint-config-standard": "^16.0.3",
|
|
45
|
-
"eslint-plugin-import": "^2.25.
|
|
45
|
+
"eslint-plugin-import": "^2.25.4",
|
|
46
46
|
"eslint-plugin-node": "^11.1.0",
|
|
47
47
|
"eslint-plugin-prettier": "^4.0.0",
|
|
48
48
|
"standard-version": "^9.3.2"
|