-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [7.2.0](v7.1.1...v7.2.0) (2022-07-24) ### Fix * Added release automation (#182) ([6499bfd](6499bfd)), closes [#182](#182) ### New * Issue and pr project addition automation (refs adaptlearning/adapt_framework#3315) (#181) ([8250c5e](8250c5e)), closes [#181](#181)
- Loading branch information
1 parent
6499bfd
commit bfe5486
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-mcq", | ||
"version": "7.1.1", | ||
"version": "7.2.0", | ||
"framework": ">=5.19.1", | ||
"homepage": "https://github.com/adaptlearning/adapt-contrib-mcq", | ||
"bugs": "https://github.com/adaptlearning/adapt-contrib-mcq/issues", | ||
"component" : "mcq", | ||
"component": "mcq", | ||
"targetAttribute": "_mcq", | ||
"displayName" : "Multiple Choice Question", | ||
"displayName": "Multiple Choice Question", | ||
"description": "A multiple choice question component", | ||
"main": "/js/adapt-contrib-mcq.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