forked from Mirror/wren
Instead of dynamically downloading these as needed during a build, this checks in those two dependencies directly into the Wren repo. That's a little lame because users of Wren who aren't building the CLI don't actually need them, but they aren't too big, so it's not a huge deal. It makes builds (particularly on Travis) more reliable, because they don't have to pull down additional content over the network.
42 lines
584 B
Plaintext
42 lines
584 B
Plaintext
# Build outputs.
|
|
/bin
|
|
/lib
|
|
/wren
|
|
|
|
# Intermediate files.
|
|
/build
|
|
/obj
|
|
/.sass-cache
|
|
*.pyc
|
|
/util/vs2017/build
|
|
/util/vs2017/obj
|
|
|
|
# I leave a temporary Wren script at the top level so that I can quickly test
|
|
# stuff.
|
|
/scratch.wren
|
|
|
|
# The baseline file is machine-specific, so doesn't get checked in.
|
|
/test/benchmark/baseline.txt
|
|
|
|
# XCode user-specific stuff.
|
|
xcuserdata/
|
|
|
|
# Allow Visual Studio project files.
|
|
!wren/
|
|
!wren_lib/
|
|
|
|
# Visual Studio cache files.
|
|
.vs/
|
|
ipch/
|
|
*.aps
|
|
*.ncb
|
|
*.opensdf
|
|
*.sdf
|
|
*.cachefile
|
|
|
|
# Visual Studio User-specific files.
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.sln.docstates
|