-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dependency bump & typescript support
- Loading branch information
AllMightySauron
authored and
AllMightySauron
committed
Nov 25, 2022
1 parent
64d86cb
commit 16889b2
Showing
10 changed files
with
675 additions
and
43 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
module.exports = require('./ascii-table3'); | ||
module.exports = require('./src/ascii-table3'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "ascii-table3", | ||
"version": "0.7.8", | ||
"version": "0.8.0", | ||
"author": "João Simões <[email protected]> (https://github.com/AllMightySauron)", | ||
"description": "Javascript ASCII renderer for beautiful console-based tables", | ||
"repository": { | ||
|
@@ -20,17 +20,21 @@ | |
} | ||
], | ||
"main": "index.js", | ||
"types": "dist/ascii-table3.d.ts", | ||
"engines": { | ||
"node": ">=11.14.0" | ||
}, | ||
"scripts": { | ||
"qa": "npm run hint && npm run coverage", | ||
"hint": "jshint ./", | ||
"test": "mocha -R spec", | ||
"coverage": "nyc mocha" | ||
"coverage": "nyc mocha", | ||
"build": "copyfiles -u 1 \"src/**/*.d.ts\" dist && npx tsc" | ||
}, | ||
"devDependencies": { | ||
"jshint": "^2.12.0", | ||
"typescript": "^4.9.3", | ||
"copyfiles": "^2.4.1", | ||
"mocha": "^9.2.2", | ||
"nyc": "^15.1.0" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.