Set version to 1.0.0 and some packaging prep. 1.0.0
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 23 Mar 2020 12:13:19 +0000 (08:13 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 23 Mar 2020 12:13:19 +0000 (08:13 -0400)
README.md
package.json

index 970193b8dfc7ed4af34d283c0926b7c694abf325..088b837d56720a3db1fc93bbc488f520c0a753a0 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # ustaxviewer
 
-This package provides an HTML frontend to the [ustaxlib]() system.
+This package provides an HTML frontend to the [ustaxlib] system.
 
 Every Form object that is added to the TaxReturn is viewable, with the value of every line
 displayed:
@@ -13,8 +13,10 @@ the "Amount You Owe", for example, which [yields this massive graph](doc/f1040-a
 
 # Usage
 
-See the [ustaxlib]() repository for how to get started modeling taxes. To run the viewer, simply do:
+See the [ustaxlib] repository for how to get started modeling taxes. To run the viewer, simply do:
 
     npx ustaxviewer-ts taxfile.ts
 
 Note that `taxfile.ts` should have a default export of the TaxReturn object to be rendered.
+
+[ustaxlib]: https://github.com/rsesek/ustaxlib
index 9dfa541beba01517ca4430e9a7919ecdcf4f2c7f..478e622800efe497f4aa5a1e506e607e95f4b664 100644 (file)
@@ -1,11 +1,12 @@
 {
   "name": "ustaxviewer",
-  "version": "0.1.0",
+  "version": "1.0.0",
   "description": "HTML form viewer for ustaxlib.",
+  "repository": "https://github.com/rsesek/ustaxviewer",
   "main": "./dist/src/index.js",
   "scripts": {
     "demo": "ts-node ./src/ustaxviewer.ts ./demos/fed2019.ts",
-    "build": "tsc; cp src/*.css dist/src"
+    "prepare": "tsc; cp src/*.css dist/src"
   },
   "bin": {
     "ustaxviewer": "./dist/src/ustaxviewer.js",
@@ -22,7 +23,7 @@
     "html-webpack-plugin": "^3.2.0",
     "solid-js": "^0.16.14",
     "style-loader": "^1.1.3",
-    "ustaxlib": "../ustaxlib/dist",
+    "ustaxlib": "^1.0.0",
     "webpack": "^4.42.0",
     "webpack-dev-server": "^3.10.3"
   },