-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [6.1.0](v6.0.0...v6.1.0) (2022-07-24) ### Fix * Added package-lock.json ([050ec57](050ec57)) * Added release automation ([72e4fb3](72e4fb3)) * Added release automation ([aac511f](aac511f)) ### New * Issue and pr project addition automation (Fixes #3315) ([68c76ee](68c76ee)), closes [#3315](https://github.com/adaptlearning/adapt-contrib-graphic/issues/3315) * Issue and pr project addition automation (refs adaptlearning/adapt_framework#3315) ([5fc1f6b](5fc1f6b))
- Loading branch information
1 parent
72e4fb3
commit 9f88f3c
Showing
2 changed files
with
60 additions
and
12 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,21 +1,62 @@ | ||
{ | ||
"name": "adapt-contrib-graphic", | ||
"version": "6.0.0", | ||
"version": "6.1.0", | ||
"framework": ">=5.19.1", | ||
"homepage": "https://github.com/adaptlearning/adapt-contrib-graphic", | ||
"bugs": "https://github.com/adaptlearning/adapt-contrib-graphic/issues", | ||
"component" : "graphic", | ||
"component": "graphic", | ||
"targetAttribute": "_graphic", | ||
"displayName" : "Graphic", | ||
"displayName": "Graphic", | ||
"description": "Graphic component which dynamically displays small and large images of different resolutions based upon device width", | ||
"main": "/js/adapt-contrib-graphic.js", | ||
"assetFields" : [ | ||
"assetFields": [ | ||
"_graphic.small", | ||
"_graphic.large" | ||
], | ||
"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