function bound(obj) { return { basename: obj.basename.bind(obj), dirname: obj.dirname.bind(obj), extname: obj.extname.bind(obj), format: obj.format.bind(obj), isAbsolute: obj.isAbsolute.bind(obj), join: obj.join.bind(obj), normalize: obj.normalize.bind(obj), parse: obj.parse.bind(obj), relative: obj.relative.bind(obj), resolve: obj.resolve.bind(obj), toNamespacedPath: obj.toNamespacedPath.bind(obj), sep: obj.sep, delimiter: obj.delimiter, }; } var path = bound(Bun._Path(true)); export var { basename, dirname, extname, format, isAbsolute, join, normalize, parse, relative, resolve, toNamespacedPath, sep, delimiter, } = path; export default path; h' onchange='this.form.submit();'> Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.github (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2021-05-12[wip] Fix CI (#202)Gravatar Drew Powers 4-46/+43
* Yarn format * Fix changeset --since * Fix Windows tests
2021-05-11VS Code extension (#197)Gravatar Matthew Phillips 7-20/+182
* Fix running the extension I'm not sure how my setup was different but I was unable to get the extension to run locally without adding a binary. This mirrors what Svelte does so I'm assuming it's the way it's supposed to be loaded. * Resolve TypeScript suggestions to the correct file This fixes a couple of bugs related to suggestions. 1 was this does the whole `.ts` extension fakeout thing so that the TypeScript plugin thinks that Astro files are TypeScript. Secondly this fixes the caching of the Document, so that suggestions account for the current document text.
2021-05-11Fix workflows! (#198)Gravatar Nate Moore 3-2/+4
* chore: fix changeset workflow * fix: changeset action * fix: pre_job => skip_test * chore: add empty changeset
2021-05-11Add Astro.request.canonicalURL and Astro.site to global (#199)Gravatar Drew Powers 25-98/+234
2021-05-11Fix portfolio example (#196)Gravatar Drew Powers 2-3/+5
2021-05-10fix: build stuck on unhandled promise reject (#191)Gravatar Kevin (Kun) "Kassimo" Qian 2-2/+13
* fix: build stuck on unhandled promise reject * Changeset
2021-05-10Allow default import component to be renamed based on import statement ↵Gravatar Kevin (Kun) "Kassimo" Qian 3-8/+30
default specifier (#193) * Allow renaming for default import components * Changeset
2021-05-08Add more docs on styling (#186)Gravatar Drew Powers 1-3/+321
2021-05-08Fix running the extension (#181)Gravatar Matthew Phillips 5-11/+37
I'm not sure how my setup was different but I was unable to get the extension to run locally without adding a binary. This mirrors what Svelte does so I'm assuming it's the way it's supposed to be loaded.