INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
| is:open is:pr -author:app/dependabot |
| const nodeExternals = require("webpack-node-externals"); | |
| const path = require("path"); | |
| module.exports = { | |
| entry: path.resolve(__dirname, "./src/index.ts"), | |
| output: { | |
| path: path.resolve(__dirname, "./dist"), | |
| filename: "index.js", | |
| libraryTarget: "commonjs2" | |
| }, |
| { | |
| "Styled Component": { | |
| "scope": "javascript", | |
| "prefix": [ | |
| "styled", | |
| "styled-component" | |
| ], | |
| "body": [ | |
| "import React from \"react\"", | |
| "import PropTypes from \"prop-types\"", |
| #!/usr/bin/env bash | |
| # | |
| # Open new iTerm window from the command line using v3 syntax for applescript as needed in iTerm2 Version 3+ | |
| # This script blocks until the cmd is executed in the new iTerm2 window. It then leaves the window open. | |
| # TODO Add option to close iTerm2 after cmd execs | |
| # See also https://www.iterm2.com/documentation-scripting.html | |
| # | |
| # Usage: |
| 'use strict'; | |
| const crypto = require('crypto'); | |
| const ENC_KEY = "bf3c199c2470cb477d907b1e0917c17b"; // set random encryption key | |
| const IV = "5183666c72eec9e4"; // set random initialisation vector | |
| // ENC_KEY and IV can be generated as crypto.randomBytes(32).toString('hex'); | |
| const phrase = "who let the dogs out"; | |
| var encrypt = ((val) => { |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // Choose either "stable" for receiving highly polished, | |
| // or "canary" for less polished but more frequent updates | |
| updateChannel: 'stable', |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 12, | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.8)', |