A high-level explanation of the singular feature that is needed.
Any context that might help an uninitiated person understand why this feature is needed.
diff --git a/package-lock.json b/package-lock.json | |
index 1cbc6ab..47f4072 100644 | |
--- a/package-lock.json | |
+++ b/package-lock.json | |
@@ -6,7 +6,7 @@ | |
"packages": { | |
"": { | |
"name": "@jeremyckahn/farmhand", | |
- "version": "1.7.7", | |
+ "version": "1.10.17", |
{ | |
"completedAchievements": { | |
"plant-crop": true, | |
"water-crop": true, | |
"harvest-crop": true | |
}, | |
"cowBreedingPen": { | |
"cowId1": null, | |
"cowId2": null, | |
"daysUntilBirth": -1 |
{ | |
"completedAchievements": { | |
"plant-crop": true, | |
"water-crop": true, | |
"harvest-crop": true, | |
"unlock-crop-price-guide": true, | |
"i-am-rich-1": true | |
}, | |
"cowBreedingPen": { | |
"cowId1": null, |
# https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/ | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseType: | |
description: 'Release type' | |
required: true | |
default: 'patch' | |
jobs: |
#!/usr/bin/env node | |
/* eslint-disable no-console */ | |
const regularFunction = () => { | |
const a = Math.random() | |
const b = Math.random() | |
const c = Math.random() | |
return a + b + c | |
} |
#!/bin/bash | |
# Usage: | |
# echo 'hello!' | ./read-stdin-to-variable.sh | |
# https://stackoverflow.com/a/15269128 | |
STD_IN=$(</dev/stdin) | |
echo "Echoing stdin:" |
" .config/nvim/init.vim | |
set runtimepath^=~/.vim runtimepath+=~/.vim/after | |
let &packpath = &runtimepath | |
source ~/.vimrc |
docker run \ | |
# Set the current host working directory as the container's /tmp so the container can access it | |
-v $(pwd):/tmp \ | |
# Mount your home directory as the Docker root user's home directory to inherit any host dotfiles | |
-v $HOME:/root \ | |
# (Effectively) set the host's working directory as the container's working directory | |
-w /tmp \ |
source "http://rubygems.org" | |
gem "itunes-library" |