-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
50 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Command such `yarn webpack-dev` might fail with | ||
# Reached heap limit Allocation failed - JavaScript heap out of memory | ||
# https://nodejs.org/api/cli.html#--max-old-space-sizesize-in-megabytes | ||
# default 16 MiB for 64-bit systems and 8 MiB for 32-bit systems | ||
export NODE_OPTIONS="--max-old-space-size=8192" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
direnv 2.34.0 | ||
nodejs 20.18.0 | ||
# asdf install task latest | ||
task 3.37.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[env] | ||
# https://mise.jdx.dev/mise-cookbook/nodejs.html#add-node-modules-binaries-to-the-path | ||
_.path = ['./node_modules/.bin'] | ||
|
||
# 'vsa' is acronym for 'visual studio ansible' | ||
# we use HOME location below to avoid polluting the project directory with, | ||
# temporary data and to allow us to mount the codebase on multiple machines | ||
# for build and testing purposes. | ||
# export VIRTUAL_ENV="${HOME}/.local/share/virtualenvs/vsa" | ||
|
||
# https://mise.jdx.dev/mise-cookbook/python.html | ||
_.python.venv = { path = "~/.local/share/virtualenvs/vsa", create = true } | ||
|
||
[settings] | ||
env_file = '.env' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters