Your (default) settings can be found at:
- Windows
%APPDATA%\Code\User\settings.json
- macOS
$HOME/Library/Application Support/Code/User/settings.json
- Linux
$HOME/.config/Code/User/settings.json
winget update --all --accept-source-agreements --accept-package-agreements |
[ | |
{ | |
"name": "SCSS", | |
"ring": "hold", | |
"quadrant": "tools", | |
"isNew": "FALSE", | |
"description": "Sass is a CSS extension language." | |
}, | |
{ | |
"name": "Fractal", |
import * as chokidar from 'chokidar'; | |
import copy from 'rollup-plugin-copy'; | |
import { red } from 'colorette'; | |
export default function copyWatch(options = {}) { | |
const { | |
hook = 'buildEnd', | |
watch = false, | |
} = options; |
import path from 'path'; | |
import fs from 'fs'; | |
import Handlebars from 'handlebars'; | |
class ImportScanner extends Handlebars.Visitor { | |
constructor() { | |
super(); | |
this.partials = new Set(); | |
} |
'use strict'; | |
const jsdom = require('jsdom'); | |
const window = jsdom.jsdom().defaultView; | |
const url = 'http://YOUR_SIGNALR_URL'; // Used for CORS | |
const hubs = 'http://YOUR_SIGNALR_HUBS_URL'; | |
function loadScript(src) { | |
return new Promise((resolve, reject) => { |
BaseView.extend({ | |
// Extend BaseView events | |
// _.result() will invoke the events method or return the object | |
events: function() { | |
return _.extend(_.result(BaseView.prototype, 'events'), { | |
'click': 'onClick' | |
}); | |
}, | |