directory-hash
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -8,2 +8,11 @@ # Change Log | ||
## [1.0.3] - 2015-09-16 | ||
### Added | ||
- ECMAScript source code linting | ||
- Release process documentation | ||
### Changed | ||
- replace the manual `build` script with an automatic `prepublish` script | ||
## [1.0.2] - 2015-09-16 | ||
@@ -15,5 +24,5 @@ | ||
### Fixed | ||
- removed stale documentation in README | ||
- fixed links in CHANGELOG | ||
- fixed Markdown syntax errors in CHANGELOG | ||
- removed stale documentation in `README` | ||
- fixed links in `CHANGELOG` | ||
- fixed Markdown syntax errors in `CHANGELOG` | ||
- invoking of the CLI | ||
@@ -27,7 +36,7 @@ | ||
- CLI | ||
- LICENSE, CHANGELOG and AUTHORS files | ||
- `LICENSE`, `CHANGELOG` and `AUTHORS` files | ||
### Fixed | ||
- `npm test` while /test folder is empty | ||
- include /lib folder in published npm package | ||
- `npm test` while `/test` folder is empty | ||
- include `/lib` folder in published NPM package | ||
@@ -37,4 +46,5 @@ ### Removed | ||
[unreleased]: https://github.com/jakutis/directory-hash-js/compare/v1.0.2...HEAD | ||
[unreleased]: https://github.com/jakutis/directory-hash-js/compare/v1.0.3...HEAD | ||
[1.0.3]: https://github.com/jakutis/directory-hash-js/compare/v1.0.2...v1.0.3 | ||
[1.0.2]: https://github.com/jakutis/directory-hash-js/compare/v1.0.1...v1.0.2 | ||
[1.0.1]: https://github.com/jakutis/directory-hash-js/compare/v1.0.0...v1.0.1 |
@@ -1,2 +0,8 @@ | ||
#!/usr/bin/env node | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.CLI = CLI; | ||
function CLI() {} |
{ | ||
"name": "directory-hash", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Do stuff with file system directory trees most often involving hashes - integrity checking, merging, etc.", | ||
"keywords": ["directory", "hash", "tree"], | ||
"keywords": [ | ||
"directory", | ||
"hash", | ||
"tree" | ||
], | ||
"main": "lib/index.js", | ||
"bin": "lib/index.js", | ||
"directories": { | ||
"lib": "lib", | ||
"bin": "bin" | ||
}, | ||
"files": [ | ||
@@ -13,3 +20,3 @@ "lib" | ||
"test": "make && mkdir -p test && mocha --async-only --compilers js:babel/register", | ||
"build": "make" | ||
"prepublish": "npm test" | ||
}, | ||
@@ -29,4 +36,9 @@ "repository": { | ||
"babel": "5.8.23", | ||
"babel-eslint": "4.1.2", | ||
"eslint": "1.4.3", | ||
"mocha": "2.3.2" | ||
}, | ||
"dependencies": { | ||
"bluebird": "2.10.0" | ||
} | ||
} |
@@ -20,8 +20,8 @@ # directory-hash | ||
### Testing | ||
1. Run `npm test` on each change in `src` or `test` directories. | ||
npm test | ||
## Releasing | ||
### Building | ||
npm run build | ||
1. Bump version in `CHANGELOG` and `package.json` files. | ||
2. Run `npm publish`. | ||
3. Run `git tag v1.2.3`. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Trivial Package
Supply chain riskPackages less than 10 lines of code are easily copied into your own project and may not warrant the additional supply chain risk of an external dependency.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Trivial Package
Supply chain riskPackages less than 10 lines of code are easily copied into your own project and may not warrant the additional supply chain risk of an external dependency.
Found 1 instance in 1 package
38284
6
1
4
+ Addedbluebird@2.10.0
+ Addedbluebird@2.10.0(transitive)