-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set the output to be the compiled version
- Loading branch information
1 parent
c812dfa
commit 874f8ec
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "harvest-profit-units", | ||
"version": "1.0.0-alpha.2", | ||
"description": "Units helper for Harvest Profit javascript applications", | ||
"main": "src/index.js", | ||
"main": "dist/index.js", | ||
"repository": "https://github.com/HarvestProfit/harvest-profit-units", | ||
"author": "Jaryd Krishnan <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -13,6 +13,11 @@ | |
"report-coverage": "coveralls < ./coverage/lcov.info", | ||
"test": "jest test/ --coverage" | ||
}, | ||
"files": [ | ||
"LICENSE.md", | ||
"README.md", | ||
"dist" | ||
], | ||
"jest": { | ||
"collectCoverageFrom": [ | ||
"src/**/!(index).{js,jsx}" | ||
|