Skip to content

Commit eddafce

Browse files
committed
CLI Command Update
1 parent b24f964 commit eddafce

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

LEARN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The CLI command for "Convert JavaScript To Python" is as follows:
5454
npm install convert-js2py
5555

5656
# Convert a JavaScript file to Python
57-
js-to-python your-js-file.js output
57+
js2py your-js-file.js output
5858
```
5959

6060
In this command, `your-js-file.js` is the input JavaScript file, and `output` is the folder where the `output.py` file will be written.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If your project includes a CLI command, provide instructions on how to use it. I
5353
npm i convert-js2py
5454

5555
# Convert a JavaScript file to Python
56-
js-to-python test.js output
56+
js2py test.js output
5757
```
5858
here `test.js` is your input JavaScript file and `output` is the folder name where the `output.py` file will be written.
5959

js-to-python-converter/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If your project includes a CLI command, provide instructions on how to use it. I
5353
npm i convert-js2py
5454

5555
# Convert a JavaScript file to Python
56-
js-to-python test.js output
56+
js2py test.js output
5757
```
5858
here `test.js` is your input JavaScript file and `output` is the folder name where the `output.py` file will be written.
5959

js-to-python-converter/bin/js-to-python.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const filePath = process.argv[2];
88
const outputFolder = process.argv[3];
99

1010
if (!filePath || !outputFolder) {
11-
console.error("Usage: js-to-python <file_path> <output_folder>");
11+
console.error("Usage: js2py <file_path> <output_folder>");
1212
process.exit(1);
1313
}
1414

js-to-python-converter/node_modules/.package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js-to-python-converter/package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js-to-python-converter/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "convert-js2py",
3-
"version": "1.1.5",
3+
"version": "1.1.7",
44
"description": "Convert JavaScript code to Python code",
55
"main": "lib/index.js",
66
"bin": {
7-
"js-to-python": "bin/js-to-python.js"
7+
"js2py": "bin/js-to-python.js"
88
},
99
"keywords": [
1010
"javascript",

0 commit comments

Comments
 (0)