guest271314
ff965af067
Update comment to include "except a built-in" ( #8251 )
...
build.module() throws for "buffer"
9 | setup(build) {
10 | build.module(
^
error: module() cannot be used to override builtin module "buffer"
2024-01-18 03:29:10 -08:00
Jarred Sumner
48d642e9e0
Add a note about timeouts and max payload size
2024-01-18 03:14:03 -08:00
Jarred Sumner
95e466628b
Add a note about reading directories
2024-01-17 22:16:34 -08:00
dave caruso
8ba332b43a
fix(windows): Implement bun.sys.renameat on Windows and fix crash during bun upgrade ( #8242 )
...
* fix #7989
* doc
* oops
2024-01-17 22:01:53 -08:00
Cena Kopahi
cb97baed22
Update docs for @types/bun ( #8160 )
...
Co-authored-by: Ashcon Partovi <ashcon@partovi.net >
2024-01-16 23:26:50 -07:00
Yusup Hambali
e77f9036e0
Fix title in dataview-to-string guide ( #8209 )
2024-01-16 15:27:38 -08:00
Jarred Sumner
f673a84c75
Update nodejs-apis.md
2024-01-15 23:46:12 -08:00
Jarred Sumner
51680dbfdc
Update nodejs-apis.md
2024-01-15 23:45:10 -08:00
Jarred Sumner
1aa36e27cb
Update nodejs-apis.md
2024-01-15 23:44:09 -08:00
Jarred Sumner
e6285a1cc8
Update nodejs-apis.md
2024-01-15 23:43:52 -08:00
Jarred Sumner
a4da0acb0e
Document additions to import.meta
2024-01-15 19:53:49 -08:00
Jarred Sumner
87eedc29d5
Move the standalone executable page
2024-01-15 18:13:28 -08:00
Jarred Sumner
e5421c56b1
feat: Support import db from './my.db' with {type: "sqlite"} ( #8178 )
...
* Support SQLite imports
* Docs
* Update executables.md
* Update loaders.md
* Update js_parser.zig
* Update loaders.md
* Update CMakeLists.txt
* Update Module.ts
* JSC got rid of `$trunc`?
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com >
2024-01-15 17:56:02 -08:00
dave caruso
b7a32b87ab
fix(bundler): improve external require transpilation on all targets ( #8057 )
...
* fix(build): do not emit import.meta.require for browsers/node.js
* update test snapshots
* sweep
* prefer require ref instead of `import.meta.require`
* remove option i did not use
* stuff
* remove rewrite_require_resolve
* ok
* ok
* wooooo
* [autofix.ci] apply automated fixes
* fix bugs
* ok
* [autofix.ci] apply automated fixes
* OOOOOPPPPPPPPPPPPS
* fix Bun.Transpiler regressions
* fix(bundler): make --splitting ensure --outdir
* fix final
* oops
* [autofix.ci] apply automated fixes
* use require.resolve
* revert but ... it no longer crashes there
* ok
* [autofix.ci] apply automated fixes
* fix fetch test
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com >
2024-01-12 22:15:51 -08:00
Aayush
f5675284c7
fix(docs): prisma not installed as dev dependency ( #8119 )
2024-01-12 03:23:47 -08:00
Aarvin R
6e1ef49ad4
fix #8067 plugin fileapis ( #8068 )
...
- use Bun.file() instead of readFileSync
2024-01-09 13:00:31 -08:00
Markus Ekholm
9a0dadad24
feat: implemented assert.doesNotMatch ( #8008 )
...
* implemented assert.doesNotMatch
* fixed assert.match and assert.doesNotMatch tests and ensure it throws when actual is not a string
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2024-01-08 17:31:54 -08:00
Archaeopteryx
f27fc77b3b
docs: add missing comma in examples ( #8018 )
2024-01-08 16:21:44 -08:00
John-David Dalton
9d56ea4880
Add icu4c to macOS install dependencies section ( #8050 )
2024-01-08 14:48:16 -08:00
karmabadger
b488734c50
docs: Update dev env instructions for Fedora ( #8014 )
...
* Update contributing.md
Added documentation for the installation of the perl Math::BigInt module
* Update contributing.md
merged the fedora perl math bigint module with the other dependencies
2024-01-08 14:42:06 -08:00
Pramit Sharma
1aee55524a
Update hash-a-password.md ( #8048 )
...
Fixed a possible typo and improved grammar and conciseness throughout
2024-01-08 12:59:15 -07:00
Jake Gordon
8805e6150a
Remove rogue word in doc ( #8047 )
2024-01-08 12:42:01 -07:00
huseeiin
237b5eded6
Update to-json.md ( #8046 )
...
better title
2024-01-08 11:56:30 -07:00
Lucas Coratger
2fd85ef0e6
fix: params in help menu for commands update and install ( #7998 )
...
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2024-01-05 22:27:16 -08:00
guest271314
a774f92757
Fix using two const result=... in same script ( #8013 )
...
const result = await ...
for (const result of result.outputs) {...
throws
const result = await Bun.build({
^
ReferenceError: Cannot access uninitialized variable.
2024-01-05 22:26:33 -08:00
karmabadger
515ce30a85
docs: Update contributing.md ( #8012 )
...
Adding ruby to dependencies installation for macOS and Fedora
2024-01-05 21:17:19 -08:00
sitiom
d4d6ef9e89
docs: Add Scoop installation reference for Windows ( #7882 )
...
* Add Scoop installation for Windows
* Update installation.md
* update powershell/cmd
irm is used because on certain installs of Windows 10 iwr does not work because of something related to Internet Explorer. haha~
---------
Co-authored-by: dave caruso <me@paperdave.net >
2024-01-05 10:26:40 -08:00
Ciarán
e103b53c86
docs(test/writing.md): Add documentation for test.each ( #7983 )
2024-01-04 17:10:08 -08:00
Moris Kramer
ee85bbc0a3
Update simple.md ( #7987 )
...
* Update simple.md
* Update docs/guides/http/simple.md
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2024-01-04 16:59:01 -08:00
Jarred Sumner
0103dd56ab
Update guide
2024-01-04 16:53:22 -08:00
Jarred Sumner
e5bd7fcb8f
Add brotli test ( #7976 )
...
* Add brotli test
* Check if we can use brotli
* vendor brotli
* Update .gitattributes
* Brotli is now always available
* Update licensing.md
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com >
2024-01-03 21:57:19 -08:00
Ciarán
32ca195f60
docs(test/writing.md): update matchers to indicate support for arrayContaining, closeTo, objectContaining ( #7800 )
2023-12-29 21:35:34 -08:00
Jeroen
b6cadf387b
docs(bundler): update CLI command in index.md for bun build with publicPath ( #7916 )
...
* docs(bundler): update CLI command in index.md for bun build with publicPath
* Update docs/bundler/index.md
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2023-12-29 15:26:35 -08:00
Oleg Sevruk
eac3bda895
Update bun-create.md ( #7889 )
...
Typo. Correct the 8th item in the hidden section “How to create buns”
2023-12-28 16:30:29 -08:00
Aarvin R
0a7bbcb9a6
finish docs for env quotes ( #7895 )
...
- added template literal backticks to sentence
- added example of quotes in .env files
2023-12-28 16:17:16 -08:00
Aarvin R
107015fd48
fix example syntax for plugins ( #7894 )
...
- updated docs/runtime/plugins.md to use plugin()
- update docs/runtime/plugins.md to use "loaded" instead of "registered" for clarity
2023-12-28 16:14:56 -08:00
johnpyp
d1dcf5ccf7
doc: improve Bun.Glob api docs ( #7859 )
...
* doc: improve Bun.Glob api docs
* Update docs/api/glob.md
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2023-12-26 22:20:25 -08:00
thunfisch987
696a5a28c9
Update docs/typescript.md ( #7825 )
2023-12-25 09:22:29 -07:00
xxxhussein
39ea8cbfea
Update installation.md ( #7817 )
...
npm states that their name should be written as "npm" in lowercase rather than "NPM" or "Npm" etc.
2023-12-24 19:52:38 -08:00
Arnaud Barré
6077ace528
Update init template & TS documentation ( #7813 )
...
* Update init template & TS documentation
* [autofix.ci] apply automated fixes
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2023-12-24 06:13:53 -08:00
Risu
98242fa10d
Add node:test to Node.js compatibility docs ( #7779 )
2023-12-22 09:21:35 -08:00
SirHyperNova
0f8bcfdc53
Remove "not production ready" from WebSocket ( #7760 )
2023-12-20 23:31:48 -08:00
dave caruso
00e745ec2c
fix(windows): use path normalizer in bun run index.ts ( #7723 )
...
* cleanup stuff
* hi
* fix building on posix
* a
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2023-12-20 13:42:09 -08:00
Supachai Kheawjuy
3f131c0411
docs(api): typo Diffie Hellman in http.md ( #7744 )
2023-12-19 11:17:11 -08:00
Supachai Kheawjuy
db60c92e25
docs(bundler): remove unused callout tag in index.md ( #7742 )
2023-12-19 10:20:14 -08:00
Bjön Limell
1730cfbbbf
docs: fixed Bun.gunzip ( #7738 )
2023-12-19 09:14:47 -08:00
Supachai Kheawjuy
45a499912b
docs(guides/process): change file extension from tsx to ts in stdin.md ( #7737 )
2023-12-19 08:44:34 -08:00
Spencer Smith
3baaa28f93
Update index.md ( #7727 )
2023-12-18 22:23:31 -08:00
Dylan Conway
b88324db31
chore: upgrade webkit ( #7720 )
...
* update
* alwaysInline
* update webkit commit
* update webkit tag
* remove webkit_url
* check for exception and update webkit commit
* update webkit tag
2023-12-18 20:54:04 -08:00
Jarred Sumner
6fc29b6412
Recommend the .start() method
2023-12-17 23:18:41 -08:00