Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/budparr/gohugo-theme-ananke.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBud Parr <budparr@gmail.com>2019-10-28 00:58:15 +0300
committerGitHub <noreply@github.com>2019-10-28 00:58:15 +0300
commita4f7c72eb33d7e79c2782d23aaa80a4748404417 (patch)
treeb86d54e8002a2d76948fd14f6447cf7dde36ca64 /package.json
parentb2774d9cf343fa703a8aa0050e7c787b2947dfd1 (diff)
Add auto-changelog (#228)
* Add auto-changelog Fixes #227 * Catch up version number This file had been previously untouched since 1.0. Using the version from the repo. Ref #227 * Add script Fixes #227
Diffstat (limited to 'package.json')
-rwxr-xr-xpackage.json12
1 files changed, 9 insertions, 3 deletions
diff --git a/package.json b/package.json
index 3a5d488..13203d2 100755
--- a/package.json
+++ b/package.json
@@ -1,12 +1,15 @@
{
"name": "gohugo-default-theme",
- "version": "1.0.0",
+ "version": "2.5.4",
"description": "Base Theme to start Hugo Sites",
- "main": "index.js",
+ "main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/theNewDynamic/thenewdynamic.com.git"
},
+ "scripts": {
+ "version": "auto-changelog -p --template keepachangelog --commit-limit 0 && git add CHANGELOG.md",
+ }
"keywords": [
"hugo",
"gohugo"
@@ -16,5 +19,8 @@
"bugs": {
"url": "https://github.com/theNewDynamic/thenewdynamic.com/issues"
},
- "homepage": "https://github.com/theNewDynamic/thenewdynamic.com#readme"
+ "homepage": "https://github.com/theNewDynamic/thenewdynamic.com#readme",
+ "devDependencies": {
+ "auto-changelog": "^1.16.1"
+ }
}