Skip to content

Commit

Permalink
Fix conflicts and type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
blitz-1306 committed Apr 30, 2021
2 parents d5e3595 + 2217b8b commit 821fcf0
Show file tree
Hide file tree
Showing 52 changed files with 2,950 additions and 51 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,9 @@
"error",
{ "allowArgumentsExplicitlyTypedAsAny": true }
]
}
},
"ignorePatterns": [
"src/types/typeStrings/typeString_parser_header.ts",
"src/types/typeStrings/typeString_parser.ts"
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ dist
docs
coverage
*.tgz
src/types/typeStrings/typeString_parser.ts
2 changes: 1 addition & 1 deletion .nycrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extension": [".ts"],
"exclude": ["**/*.d.ts", "**/node_modules/**", "**/test/**", "**/coverage/**", "**/docs/**"],
"exclude": ["**/*.d.ts", "**/node_modules/**", "**/test/**", "**/coverage/**", "**/docs/**", "src/types/typeStrings/typeString_parser*.ts"],
"reporter": ["html", "text-summary"],
"all": true,
"check-coverage": true,
Expand Down
95 changes: 48 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
"sol-ast-compile": "dist/bin/compile.js"
},
"scripts": {
"clean": "rm -rf dist/",
"clean": "rm -rf dist/ src/ast/typestrings/typeString_parser.ts",
"transpile": "tsc",
"build": "npm run clean && npm run transpile",
"build-type-parser": "tspegjs -o src/types/typeStrings/typeString_parser.ts --custom-header-file src/types/typeStrings/typeString_parser_header.ts --cache src/types/typeStrings/typeString_grammar.pegjs",
"build": "npm run clean && npm run build-type-parser && npm run transpile",
"lint": "eslint src/ test/ --ext=ts",
"lint:fix": "eslint src/ test/ --ext=ts --fix",
"test": "NODE_OPTIONS='--max-old-space-size=2048' nyc mocha",
Expand Down Expand Up @@ -105,8 +106,10 @@
"expect": "^26.6.2",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"pegjs": "^0.10.0",
"prettier": "2.2.1",
"ts-node": "^9.1.1",
"ts-pegjs": "^0.3.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
Expand Down
Loading

0 comments on commit 821fcf0

Please sign in to comment.