initial working version

This commit is contained in:
Ben Miller
2024-11-04 01:06:00 -07:00
parent b2af2fc98c
commit 0fd89bc9ea
73 changed files with 38650 additions and 4 deletions

13
init.ps1 Normal file
View File

@ -0,0 +1,13 @@
# installs fnm (Fast Node Manager)
winget install Schniz.fnm
# configure fnm environment
fnm env --use-on-cd | Out-String | Invoke-Expression
# download and install Node.js
fnm use --install-if-missing 22
# verifies the right Node.js version is in the environment
node -v # should print `v22.11.0`
# verifies the right npm version is in the environment
npm -v # should print `10.9.0`
npm i -g '@google/clasp'
npm i -D '@types/google-apps-script'