-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [5.1.0](v5.0.0...v5.1.0) (2022-07-24) ### Fix * Added package-lock.json ([abde99d](abde99d)) * Added release automation ([ffdec70](ffdec70)) * Added release automation ([d138bec](d138bec)) ### New * Issue and pr project addition automation (refs adaptlearning/adapt_framework#3315) ([d6611b2](d6611b2))
- Loading branch information
1 parent
ffdec70
commit 85f1d96
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-assessmentResults", | ||
"version": "5.0.0", | ||
"version": "5.1.0", | ||
"framework": ">=5.19.1", | ||
"homepage": "https://github.com/adaptlearning/adapt-contrib-assessmentResults", | ||
"bugs": "https://github.com/adaptlearning/adapt-contrib-assessmentResults/issues", | ||
"component" : "assessmentResults", | ||
"component": "assessmentResults", | ||
"targetAttribute": "_assessmentResults", | ||
"displayName" : "Assessment Results", | ||
"displayName": "Assessment Results", | ||
"description": "A component used to display a single assessment's results", | ||
"main": "/js/adapt-contrib-assessmentResults.js", | ||
"keywords": [ | ||
"adapt-plugin", | ||
"adapt-component" | ||
], | ||
"license": "GPL-3.0" | ||
"license": "GPL-3.0", | ||
"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