Skip to content

Commit a00408a

Browse files
committed
New point release
Had to fix the file exclusion list.
1 parent 61c3830 commit a00408a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.npmignore

+9-8
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
.coverage
66
.eslintignore
77
.eslintrc.json
8+
.antlr
89
cspell.json
910
jest.config.ts
1011
tsconfig.json
1112

12-
bin
13-
config
14-
coverage
15-
doc
16-
parser
17-
src
18-
tests
19-
tools
13+
bin/*.jar
14+
coverage/**
15+
data/**
16+
doc/**
17+
parser/**
18+
src/**
19+
tests/**
20+
tools/**

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "java2typescript",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Convert Java Code to Typescript",
55
"keywords": [
66
"Java",

src/convert.ts

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {
1515
} from "./conversion/JavaToTypeScript.js";
1616
import { IMemberOrderOptions } from "./conversion/MemberOrdering.js";
1717

18-
console.log(process.argv);
1918
const args = process.argv.slice(2);
2019

2120
if (args.length < 1) {

0 commit comments

Comments
 (0)