Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# netlify Change Log
# Change Log

All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## 2.4.1 - 2019-03-04
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"from2-string": "^1.1.0",
"gh-release": "^3.5.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
Expand Down Expand Up @@ -102,13 +103,14 @@
"build:webpack": "webpack",
"ci": "run-s test build",
"deptree": "depcruise --exclude '^node_modules' --output-type dot src | dot -T svg > site/dist/dependencygraph.svg",
"prepublishOnly": "npm run build:webpack",
"prepublishOnly": "npm run build:webpack && git push && git push --tags && gh-release",
"report": "nyc report --reporter=text-lcov | coveralls",
"test": "run-s test:*",
"test:ava": "nyc --reporter=lcov ava --verbose && nyc report",
"test:deps": "dependency-check ./package.json --entry \"src/**/!(*.test).js\" --unused --missing --no-dev --no-peer",
"test:lint": "eslint src",
"watch": "nyc --reporter=lcov ava --watch",
"clean": "rimraf dist coverage"
"clean": "rimraf dist coverage",
"version": "auto-changelog -p --template keepachangelog --breaking-pattern breaking && git add CHANGELOG.md"
}
}