Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 897 Bytes

File metadata and controls

31 lines (23 loc) · 897 Bytes

Version

Why fork from microsoft/vscode-policy-watcher

microsoft/vscode-policy-watcher is limited to only to the Microsoft vendor. @vscodium/policy-watcher removes that limit so it can be used by any vender.

Usage

const createWatcher = require("@vscodium/policy-watcher");

createWatcher(
  // vendor name
  "VSCodium",
  // product name
  "VSCodium",
  {
    UpdateMode: { type: "string" },
    SCMInputFontSize: { type: "number" },
  },
  (update) => console.log(update)
);

License

MIT