proxyquire with typescript
Exmaple on how to get proxyquire working with typescript
Exmaple on how to get proxyquire working with typescript
sudo yum update -y
sudo amazon-linux-extras install docker -y
sudo systemctl enable --now docker
sudo usermod -a -G docker ec2-user
sudo reboot
Keep windows alive
Copy the files from this gist into a folder and run
woke.bat
# PLACE THIS FILE IN ~/.verdaccio/conf/config.yaml | |
# | |
# This is the config file used for the docker images. | |
# It allows all users to do anything, so don't use it on production systems. | |
# | |
# Do not configure host and port under `listen` in this file | |
# as it will be ignored when using docker. | |
# see https://verdaccio.org/docs/en/docker#docker-and-custom-port-configuration |
Local npm registry that caches all calls to npm.
Comes with a built in UI, once its finished syncing you should see the results.
https://github.com/local-npm/local-npm
{"lastUpload":"2020-11-25T12:04:54.687Z","extensionVersion":"v3.4.3"} |
const path = require('path'); | |
const fs = require('fs'); | |
const { exec } = require('child_process'); | |
let command = 'convert '; | |
const images = fs.readdirSync(path.resolve(__dirname, 'images')).filter(i => i.includes('jpg') || i.includes('jpeg')).map(i=> `images/${i}`) | |
command += images.map(i => { | |
const label = i.split('/')[1] | |
return `\\( -page +0+0 -label "${label}" ${i} -background none -mosaic -set colorspace RGB \\) ` |
function merge(dest, src, discriminator) { | |
if (!discriminator) { | |
return [...dest, ...src]; | |
} | |
const result = [...dest]; | |
src.forEach((s) => { | |
const match = dest.find(d => d[discriminator] === s[discriminator]); | |
if (match) { | |
const oldVal = JSON.stringify(match); | |
const newVal = JSON.stringify(s); |
alias.pretty=log --pretty=oneline
alias.tag-graph=log --tags --graph --oneline --decorate --simplify-by-decoration
alias.co=checkout -b