Skip to content

Commit

Permalink
fix: accidentally removed NPM build from prepare script (#146)
Browse files Browse the repository at this point in the history
By adding Husky, we accidentally removed NPM build from the prepare script and therefore broke the packaging of the application.
  • Loading branch information
dstallenberg authored Jan 25, 2023
1 parent 6b5e939 commit cb1652b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [0.2.1] - 2023-01-25

### Fixed

- Package build: npm build was not being called before publish

## [0.2.0] - 2023-01-18

### Added
Expand Down Expand Up @@ -49,7 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Solidity instrumentation
- Solidity specific search criteria (i.e., probe coverage)

[unreleased]: https://github.com/syntest-framework/syntest-solidity/compare/v0.2.0...HEAD
[unreleased]: https://github.com/syntest-framework/syntest-solidity/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.2.0...v0.2.1
[0.2.0]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.2...v0.2.0
[0.1.2]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.1...v0.1.2
[0.1.1]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.0...v0.1.1
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syntest/solidity",
"version": "0.2.0",
"version": "0.2.1",
"description": "SynTest Solidity is a tool for automatically generating test cases for the Solidity platform",
"keywords": [
"syntest",
Expand Down Expand Up @@ -41,7 +41,7 @@
"format:check": "prettier --config .prettierrc.json --ignore-path .prettierignore --check .",
"lint": "eslint --config .eslintrc.json --ignore-path .eslintignore .",
"lint:fix": "eslint --config .eslintrc.json --ignore-path .eslintignore . --fix",
"prepare": "husky install",
"prepare": "npm run build && husky install",
"run": "truffle run syntest-solidity",
"test": "mocha --config .mocharc.json",
"test:coverage": "nyc mocha --config .mocharc.json",
Expand Down

0 comments on commit cb1652b

Please sign in to comment.