-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [4.1.0](v4.0.0...v4.1.0) (2022-07-24) ### Fix * Added package-lock.json ([ae1b76e](ae1b76e)) * Added release automation ([1307a83](1307a83)) * Added release automation ([7610fdc](7610fdc)) ### New * Issue and pr project addition automation (Fixes #3315) ([6b30ba2](6b30ba2)), closes [#3315](https://github.com/adaptlearning/adapt-contrib-bookmarking/issues/3315) * Issue and pr project addition automation (refs adaptlearning/adapt_framework#3315) ([c0bb7b1](c0bb7b1))
- Loading branch information
1 parent
1307a83
commit 33d61d2
Showing
2 changed files
with
58 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,58 @@ | ||
{ | ||
"name": "adapt-contrib-bookmarking", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"framework": ">=5.19.1", | ||
"homepage": "https://github.com/adaptlearning/adapt-contrib-bookmarking", | ||
"bugs": "https://github.com/adaptlearning/adapt-contrib-bookmarking/issues", | ||
"extension" : "bookmarking", | ||
"displayName" : "Bookmarking", | ||
"extension": "bookmarking", | ||
"displayName": "Bookmarking", | ||
"description": "An extension that tracks the learner's location in the course so that it can return them to that location in a subsequent session", | ||
"main": "/js/adapt-contrib-bookmarking.js", | ||
"keywords": [ | ||
"adapt-plugin", | ||
"adapt-extension" | ||
], | ||
"license": "GPL-3.0", | ||
"targetAttribute": "_bookmarking" | ||
"targetAttribute": "_bookmarking", | ||
"private": true, | ||
"devDependencies": { | ||
"@semantic-release/commit-analyzer": "^9.0.2", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/github": "^8.0.5", | ||
"@semantic-release/npm": "^9.0.1", | ||
"@semantic-release/release-notes-generator": "^10.0.3", | ||
"conventional-changelog-eslint": "^3.0.9", | ||
"semantic-release": "^19.0.3" | ||
}, | ||
"scripts": { | ||
"postversion": "cp package.json bower.json" | ||
}, | ||
"release": { | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", | ||
{ | ||
"preset": "eslint" | ||
} | ||
], | ||
[ | ||
"@semantic-release/release-notes-generator", | ||
{ | ||
"preset": "eslint" | ||
} | ||
], | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": [ | ||
"package.json", | ||
"bower.json" | ||
], | ||
"message": "Chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
} | ||
] | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters