feature/monday-service (#198)

* Upgrade packages

* Add monday as service (#197)

* Add monday as service

* Replaced static subdomain with placeholder

* Only use pulse title for description

* Update changelog und pump version

Co-authored-by: markusNahketing <69197867+markusNahketing@users.noreply.github.com>
This commit is contained in:
Manuel Bouza 2020-08-06 11:50:14 +02:00 committed by GitHub
parent dcef794fe4
commit 6f47cf9cd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1365 additions and 1968 deletions

View File

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.5.1] - 2020-08-04
### Added
- Add support for Monday
## [1.5.0] - 2020-06-15
### Added

View File

@ -1,7 +1,7 @@
{
"name": "moco-browser-extensions",
"description": "Browser plugin for MOCO",
"version": "1.5.0",
"version": "1.5.1",
"license": "MIT",
"scripts": {
"start": "yarn start:chrome",
@ -47,7 +47,7 @@
"copy-webpack-plugin": "^6.0.2",
"copyfiles": "^2.3.0",
"css-loader": "^4.2.0",
"eslint": "^6.8.0",
"eslint": "7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",

View File

@ -161,4 +161,14 @@ export default {
},
allowHostOverride: true,
},
monday: {
name: "monday",
host: "https://:org.monday.com",
urlPatterns: [":host:/boards/:board/pulses/:id"],
description: (document, service, { id }) => {
return document.querySelector(".pulse_title")?.textContent?.trim()
},
allowHostOverride: false,
},
}

3313
yarn.lock

File diff suppressed because it is too large Load Diff