Skip to content

Commit

Permalink
Simplify build & install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffbyrnes committed Jan 10, 2022
1 parent c0f6b18 commit 3d636a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ Once you have the above installed, clone the project & its submodules, then inst
git clone --recurse-submodules git@github.com:ponychicken/WebsterParser
cd WebsterParser
npm install
npm start
cd template
make all
make install
npm run build_and_install
````

Building the dictionary might take a while (around three minutes on my machine)
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"private": true,
"scripts": {
"build": "npm start && cd template && make",
"build_and_install": "npm start && cd template && make && make install",
"start": "ts-node index.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"fix": "npm run lint -- --fix"
Expand Down

0 comments on commit 3d636a0

Please sign in to comment.