-
-
Notifications
You must be signed in to change notification settings - Fork 25
TODO
Alejandro Barreto edited this page Jul 18, 2019
·
16 revisions
Notes for myself and don't bubble up to issues.
- Remove random GH pages environment
- Add
eslintforlodash - Deployment: Migrate from Rebrandly to GH Releases
- We should do actual GH releases from a pipeline... pre-release is automatic but full release requires manual approval.
- https://github.com/alejandro5042/azdo-userscripts/releases/latest/download/azdo-pr-dashboard.user.js
- Post here: https://developercommunity.visualstudio.com/content/idea/365746/add-a-checkbox-in-pull-request-file-list-for-each.html
- Use WeakMap for caching?
- ReleaseIt
- Badges
- Enforce DCO?
- Awesome Actions
- Document in CONTRIB how to edit the userscript from local disk. But also check in actual path and also a return statement
- Run npm install when first cloned. Go get npm also
- If using vscode install this: https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
- Caveat checkboxes only work on single domain
- About local storage space: 10005030
- Document the weird func pattern
- More sub-functions? Or use classes?
- User-visible error handling as a page banner
- Fully update README and CONTRIB
- Overall: https://ni.visualstudio.com/_pulls
- Repo dashboard: https://dev.azure.com/ni/DevCentral/_git/ASW/pullrequests?_a=mine
- 30/60 owned vs not owned files: https://dev.azure.com/ni/DevCentral/_git/ASW/pullrequest/28751?path=%2FSource%2FConfigurationBasedSoftware%2FLumberjack%2FApplication%2FHardlinks.Application.targets&_a=files
- Sparse owned files, fast: https://dev.azure.com/ni/DevCentral/_git/ASW/pullrequest/27997?_a=files
- Big and virtual tree loading: https://dev.azure.com/ni/DevCentral/_git/ASW/pullrequest/25966?_a=files#
- Non-ASW repo: https://dev.azure.com/ni/LabVIEW.Tools/_git/Source/pullrequest/27980?_a=files&path=%2F
Also available at: https://cdn.jsdelivr.net/gh/alejandro5042/azdo-userscripts/src/azdo-pr-dashboard.user.js
// ==UserScript==
// @name New ES6-Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description shows how to use babel compiler
// @author You
// @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js
// @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js
// @match <$URL$>
// ==/UserScript==
var inline_src = (<><![CDATA[
// Your code here...
]]></>).toString();
var c = Babel.transform(inline_src, { presets: [ "es2015", "es2016" ] });
eval(c.code);
Please refer documentation in the README.md.