Skip to content

Commit

Permalink
prepare 0.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Aug 30, 2017
1 parent 84ceae8 commit 372be9a
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 9 deletions.
58 changes: 58 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [0.0.2] - 2017-08-30
### Fixed
- NPM prepare script now builds typescript files before publishing.


## [0.0.1] - 2017-08-30
### Added
- Complete Account implementation
- Complete Amount implementation
- Complete Attachment implementation
- Complete Merchant implementation
- Complete Transaction implementation
- Several helper functions
- Complete Account implementation.
- Complete Amount implementation.
- Complete Attachment implementation.
- Complete Merchant implementation.
- Complete Transaction implementation.
- Several helper functions.

[0.0.2]: https://github.com/robjtede/monzolib/compare/v0.0.1...v0.0.2
[0.0.1]: https://github.com/robjtede/monzolib/compare/b4bb9c...v0.0.1
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monzolib",
"version": "0.0.1",
"version": "0.0.2",
"description": "Fully Featured JS/Node Monzo Library",
"main": "./dist/index.js",
"types": "./dist/index.d.js",
Expand All @@ -18,7 +18,7 @@
"test": "npm run build && ava",
"test:w": "npm run test -- --watch",
"precommit": "lint-staged && npm test",
"publish": "copyfiles"
"prepare": "npm run build"
},
"bugs": {
"url": "https://github.com/robjtede/monzolib/issues"
Expand Down

0 comments on commit 372be9a

Please sign in to comment.