aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore160
-rw-r--r--README.md2
2 files changed, 162 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..68bc17f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,160 @@
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+*.py,cover
+.hypothesis/
+.pytest_cache/
+cover/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+db.sqlite3
+db.sqlite3-journal
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+.pybuilder/
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# IPython
+profile_default/
+ipython_config.py
+
+# pyenv
+# For a library or package, you might want to ignore these files since the code is
+# intended to run in multiple environments; otherwise, check them in:
+# .python-version
+
+# pipenv
+# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
+# However, in case of collaboration, if having platform-specific dependencies or dependencies
+# having no cross-platform support, pipenv may install dependencies that don't work, or not
+# install all needed dependencies.
+#Pipfile.lock
+
+# poetry
+# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
+# This is especially recommended for binary packages to ensure reproducibility, and is more
+# commonly ignored for libraries.
+# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
+#poetry.lock
+
+# pdm
+# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
+#pdm.lock
+# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
+# in version control.
+# https://pdm.fming.dev/#use-with-ide
+.pdm.toml
+
+# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
+__pypackages__/
+
+# Celery stuff
+celerybeat-schedule
+celerybeat.pid
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+.dmypy.json
+dmypy.json
+
+# Pyre type checker
+.pyre/
+
+# pytype static type analyzer
+.pytype/
+
+# Cython debug symbols
+cython_debug/
+
+# PyCharm
+# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
+# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
+# and can be added to the global gitignore or merged into this file. For a more nuclear
+# option (not recommended) you can uncomment the following to ignore the entire idea folder.
+#.idea/
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ba9c4fa
--- /dev/null
+++ b/README.md
@@ -0,0 +1,2 @@
+# CS105MiniProject
+CS105 Mini-Project
dler-api'>rfc/bun-bundler-api Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/shadow.test.js (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-08-28Update README.mdGravatar Jarred Sumner 1-1/+6
2022-08-28Update package.jsonGravatar Jarred Sumner 1-1/+1
2022-08-28Remove code that doesn't workGravatar Jarred Sumner 12-632/+41
2022-08-28More reliable macOS event loop (#1166)Gravatar Jarred Sumner 13-144/+607
2022-08-28feat: hack in support for tsconfig `extends` (#1147)Gravatar yepitschunked 2-14/+47
2022-08-28support pass null as NULL ptr (#1160)Gravatar Zilin Zhu 6-1/+27
2022-08-28[bun:ffi] Fix crash with uint64_tGravatar Jarred Sumner 3-9/+8
2022-08-28[bun:ffi] Fix int16 / uin16 maxGravatar Jarred Sumner 1-3/+6
2022-08-27Update WebKit (#1165)Gravatar Jarred Sumner 67-1083/+1210
2022-08-27Fix crash in `os` module on macOSGravatar Jarred Sumner 2-74/+108
2022-08-27Update MakefileGravatar Jarred Sumner 1-1/+1
2022-08-27Update MakefileGravatar Jarred Sumner 1-0/+2
2022-08-27Fix ffi uint64_t parameter (#1158)Gravatar Zilin Zhu 4-39/+63
2022-08-27fix compile error (#1157)Gravatar Zilin Zhu 3-5/+7
2022-08-27added shell to STRIP variable definition (#1156)Gravatar Dylan Conway 1-1/+1
2022-08-26Update napi.zigGravatar Jarred Sumner 1-1/+3
2022-08-26Remove pointer to stack buffer in `os` module and fix build issueGravatar Jarred Sumner 3-23/+19
2022-08-26Implement `napi_add_finalizer`Gravatar Jarred Sumner 1-0/+13
2022-08-26Fix debug build cacheGravatar Jarred Sumner 1-1/+4
2022-08-26fix: Update broken README links (#1148)Gravatar Max Thomson 1-3/+3
2022-08-26Update node_fs.zigGravatar Jarred Sumner 1-1/+1
2022-08-26fix mkdtemp (#1151)Gravatar Zilin Zhu 1-3/+3
2022-08-25Add native BufferList (#1146)Gravatar Zilin Zhu 8-167/+500
2022-08-25feat: implement native os module (#1115)Gravatar Hyro 27-15/+1820
2022-08-25Fix `Request` and `Response` in macrosGravatar Jarred Sumner 1-19/+31
2022-08-25Faster way to lookup mimetypeGravatar Jarred Sumner 1-7/+8
2022-08-25Fix incorrect `indexOfNotChar` causing sourcemaps bugsGravatar Jarred Sumner 1-7/+9
2022-08-24Fix clearTimeout and linux timeout (#1138)Gravatar Zilin Zhu 2-5/+11
2022-08-24Add pad back to base64 (#1140)Gravatar Zilin Zhu 1-4/+4
2022-08-23updated minified url polyfill (#1132)Gravatar Sam 1-1/+1
2022-08-23add SlowBuffer (#1133)Gravatar Zilin Zhu 3-1/+15
2022-08-22Remove response poolGravatar Jarred Sumner 3-47/+8
2022-08-22Fix build errorGravatar Jarred Sumner 3-2/+16
2022-08-22woopsGravatar Jarred Sumner 1-1/+0
2022-08-22[node:http] speed up assigning headersGravatar Jarred Sumner 3-75/+58
2022-08-22reduce usage of protectGravatar Jarred Sumner 1-1/+11
2022-08-22Update mime_type.zigGravatar Jarred Sumner 1-0/+6
2022-08-22Improve error message when port is already in useGravatar Jarred Sumner 1-2/+12
2022-08-22Update server.zigGravatar Jarred Sumner 1-2/+2
2022-08-22Support emit Symbol events in EventEmitter (#1129)Gravatar Zilin Zhu 7-122/+278
2022-08-22faster way to read content-typeGravatar Jarred Sumner 1-1/+1
2022-08-22Fix `Buffer.isEncoding`Gravatar Jarred Sumner 1-1/+3
2022-08-22Add some optimizations to FetchHeadersGravatar Jarred Sumner 3-16/+188
2022-08-22Fix import pathGravatar Jarred Sumner 1-1/+1
2022-08-2238% faster `node:http`Gravatar Jarred Sumner 1-77/+203