Skip to content

Commit cb1652b

Browse files
authored
fix: accidentally removed NPM build from prepare script (#146)
By adding Husky, we accidentally removed NPM build from the prepare script and therefore broke the packaging of the application.
1 parent 6b5e939 commit cb1652b

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
### Security
2121

22+
## [0.2.1] - 2023-01-25
23+
24+
### Fixed
25+
26+
- Package build: npm build was not being called before publish
27+
2228
## [0.2.0] - 2023-01-18
2329

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

52-
[unreleased]: https://github.com/syntest-framework/syntest-solidity/compare/v0.2.0...HEAD
58+
[unreleased]: https://github.com/syntest-framework/syntest-solidity/compare/v0.2.1...HEAD
59+
[0.2.1]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.2.0...v0.2.1
5360
[0.2.0]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.2...v0.2.0
5461
[0.1.2]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.1...v0.1.2
5562
[0.1.1]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.0...v0.1.1

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syntest/solidity",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "SynTest Solidity is a tool for automatically generating test cases for the Solidity platform",
55
"keywords": [
66
"syntest",
@@ -41,7 +41,7 @@
4141
"format:check": "prettier --config .prettierrc.json --ignore-path .prettierignore --check .",
4242
"lint": "eslint --config .eslintrc.json --ignore-path .eslintignore .",
4343
"lint:fix": "eslint --config .eslintrc.json --ignore-path .eslintignore . --fix",
44-
"prepare": "husky install",
44+
"prepare": "npm run build && husky install",
4545
"run": "truffle run syntest-solidity",
4646
"test": "mocha --config .mocharc.json",
4747
"test:coverage": "nyc mocha --config .mocharc.json",

0 commit comments

Comments
 (0)