All Projects → cschleiden → azure-boards-decompose

cschleiden / azure-boards-decompose

Licence: MIT license
Azure Boards extension to quickly decompose work items into a valid hierarchy

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
HTML
75241 projects

Projects that are alternatives of or similar to azure-boards-decompose

TfsCmdlets
PowerShell Cmdlets for Azure DevOps and Team Foundation Server
Stars: ✭ 75 (+114.29%)
Mutual labels:  tfs, vsts
vsts-extension-multivalue-control
A work item form control which allows selection of multiple values.
Stars: ✭ 40 (+14.29%)
Mutual labels:  tfs, vsts
Task-Card-Creator
Small tool for printing task cards used for a Scrum board. Your physical Scrum board will look fantastic. Supports Team Foundation Server and Azure DevOps.
Stars: ✭ 25 (-28.57%)
Mutual labels:  tfs, vsts
tfsaggregator
A server side plugin for Team Foundation Server (TFS) and Azure DevOps Server for performing various Work Item related calculations, create new Work Items and Links automatically.
Stars: ✭ 122 (+248.57%)
Mutual labels:  tfs, vsts
vsts-extension-color-control
This is an example of a custom control extension for use in on-premise instances of Visual Studio Team Services on the work item form.
Stars: ✭ 16 (-54.29%)
Mutual labels:  tfs, vsts
wiql-editor
Search work items with wiql queries.
Stars: ✭ 30 (-14.29%)
Mutual labels:  tfs, vsts
auto-click-auto-fill
Auto Click Auto Fill on any web page
Stars: ✭ 111 (+217.14%)
Mutual labels:  extension
hackbar
A browser extension for Penetration Testing
Stars: ✭ 131 (+274.29%)
Mutual labels:  extension
Melodrumatic
Audio plugin that lets you use MIDI to pitch-shift via delay to turn unpitched audio into melodies
Stars: ✭ 26 (-25.71%)
Mutual labels:  vsts
rust-azure-devops
[No longer maintain] 🦀 Rust extension for Azure DevOps
Stars: ✭ 26 (-25.71%)
Mutual labels:  vsts
DeploySsrs
Build-Release task for VSTS/TFS that manages Microsoft's SQL Server Reporting Services
Stars: ✭ 17 (-51.43%)
Mutual labels:  vsts
google-translate-anki
No description or website provided.
Stars: ✭ 28 (-20%)
Mutual labels:  extension
Funky
Funky is a functional utility library written in Objective-C.
Stars: ✭ 41 (+17.14%)
Mutual labels:  extension
save-text-to-file-firefox
Firefox addon that saves highlighted text to a file.
Stars: ✭ 87 (+148.57%)
Mutual labels:  extension
spreadsheet
Yii2 extension for export to Excel
Stars: ✭ 79 (+125.71%)
Mutual labels:  extension
TwitchPotPlayer
Extensions for PotPlayer to watch Twitch streams without streamlinks or any crap.
Stars: ✭ 159 (+354.29%)
Mutual labels:  extension
spring-cloud-stream-outbox-extension
Spring Cloud Stream Transactional Messaging Extension
Stars: ✭ 18 (-48.57%)
Mutual labels:  extension
new-word-tab
A browser extension to learn a new word per new tab
Stars: ✭ 30 (-14.29%)
Mutual labels:  extension
sanic-plugin-toolkit
Easily create Plugins for Sanic!
Stars: ✭ 49 (+40%)
Mutual labels:  extension
github-toc
📖 Browser extension that adds a table of contents to GitHub repos, wikis and gists.
Stars: ✭ 71 (+102.86%)
Mutual labels:  extension

2021/4/1 - I have stopped support for all my Azure DevOps extensions and unpublished them from the marketplace

VSTS Quick Decompose

This extension allows you to quickly decompose a work item into a valid hierarchy. Example:

Decompose item into hierarchy

This is an example for using relatively modern web dev technologies to build a VSTS (https://www.visualstudio.com) extension. In contrast to my other seed project and example (https://github.com/cschleiden/vsts-extension-ts-seed-simple and https://github.com/cschleiden/vsts-extension-tags-mru) which focused on simplicity, this sample aims to be more complete. It supports:

  • Code written in Typescript/Styling defined using SASS
  • Publishing a dev version of an extension and a production one, without changing the manifest
  • Webpack for watching and building files during development, and for building optimized bundles for production
  • Unit tests of the core logic using mocha/chai
  • React for rendering a complex UI with user interation

Building

This extension uses webpack for bundling, webpack-dev-server for watching files and serving bundles during development, mocha, chai for writing unit tests, and karma as a test runner.

Two bundles are defined for webpack, one for the main dialog, one for the extension context menu registration.

All actions can be triggered using npm scripts (npm run <target>), no additional task runner required.

General setup

You need

  • node/npm

then just clone and execute npm install.

Development

  1. Run npm run publish:dev to publish the current extension manifest to the marketplace as a private extension with a suffix of -dev added to the extension id. This package will use a baseUri of https://localhost:8080.

  2. Run npm run dev to start a webpack developmen server that watches all source files. Tests live next to product code and use a .tests.ts suffix instead of only .ts.

  3. To run a single test pass execute npm run test, to keep watching tests and build/execute as you develop execute npm run dev:test.

Production

  1. Run npm run publish:release to compile all modules into bundles, package them into a .vsix, and publish as a public extension to the VSTS marketplace.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].