-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# 1.0.0 (2023-01-12) ### Breaking * update theme bg image selector (fixes #59) (#61) ([d039d8d](d039d8d)), closes [#59](#59) [#61](#61) ### Fix * Added release automation ([c295f6c](c295f6c)) * P ([a8e885a](a8e885a)) * Readability padding right override (fixes #57) ([bbce1f0](bbce1f0)), closes [#57](#57) * Schema text updates (fixes #55) ([e89f13e](e89f13e)), closes [#55](#55) * visually hide rather than remove images (#62) ([5272116](5272116)), closes [#62](#62) ### Separated * contrast, opacity, animations, zoom, invert, background images and optical profiles ([22dbe99](22dbe99)) ### Update * Add data-order to support navigation sorting (fixes #53) (#54) ([0a4a6c1](0a4a6c1)), closes [#53](#53) [#54](#54)
- Loading branch information
1 parent
c295f6c
commit 41af595
Showing
2 changed files
with
46 additions
and
5 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-visua11y", | ||
"version": "1.0.6", | ||
"version": "1.0.0", | ||
"framework": ">=5.15", | ||
"homepage": "https://github.com/cgkineo/adapt-visua11y", | ||
"issues": "https://github.com/cgkineo/adapt-visua11y/issues/new", | ||
"extension" : "visua11y", | ||
"displayName" : "Visua11y", | ||
"extension": "visua11y", | ||
"displayName": "Visua11y", | ||
"description": "An extension which provides visual accessibility improvements", | ||
"main": "/js/adapt-visua11y.js", | ||
"keywords": [ | ||
"adapt-plugin", | ||
"adapt-extension" | ||
], | ||
"license": "GPL-3.0", | ||
"targetAttribute": "_visua11y" | ||
"targetAttribute": "_visua11y", | ||
"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