Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

patak-dev

patak-dev pushed 1 commit to main vitejs/vite
  • chore(deps): update dependency strip-literal to v3 (#19231) 1172d65

View on GitHub

patak-dev closed a pull request on vitejs/vite
chore(deps): update dependency strip-literal to v3
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [strip-literal](https://redirect.github.com/antfu/strip-literal) | ...
patak-dev pushed 1 commit to main vitejs/vite
  • chore(deps): update devDependency vitest to v3 (#19233) 311cdd2

View on GitHub

patak-dev pushed 1 commit to main vitejs/vite
  • feat(reporter): add `wasm` to the compressible assets regex (#19085) ce84142

View on GitHub

patak-dev closed a pull request on vitejs/vite
feat(reporter): add `wasm` to the compressible assets regex
Wasm files are often highly compressible. It would be nice to show their compressed size in Vite builds. This PR is a one-line change that should show their compressed size after the build is compl...
patak-dev created a review on a pull request on vitejs/vite

View on GitHub

patak-dev pushed 1 commit to main vitejs/vite
  • fix: change ResolvedConfig type to interface to allow extending it (#19210) bc851e3

View on GitHub

patak-dev closed an issue on vitejs/vite
`ResolvedConfig` interface
### Description [`ResolvedConfig`][1] is currently defined as a type, but it should be an interface. Unlike with `UserConfig`, this means [declaration merging][2] cannot be taken advantage of b...
patak-dev closed a pull request on vitejs/vite
fix: change ResolvedConfig type to interface to allow extending it
### Description This PR changes `ResolvedConfig` from a type to an interface, allowing it to be extended for various use cases, including plugin development. Closes: #15473
patak-dev closed a pull request on vitejs/vite
feat(worker): support dynamic worker option fields
### Description **The Problem** Vite has a hard requirement that worker options are defined statically or it throws an error. This prevents some legitimate use cases, such as when a dynamic n...
patak-dev pushed 1 commit to main vitejs/vite
  • feat(css): add friendly errors for IE hacks that are not supported by lightningcss (#19072) caad985

View on GitHub

patak-dev closed a pull request on vitejs/vite
feat(css): add friendly errors for IE hacks that are not supported by lightningcss
### Description This PR improves the error message for https://github.com/parcel-bundler/lightningcss/issues/39. I assume there won't be many people facing this, but it is difficult to know w...
patak-dev closed a pull request on vitejs/vite
feat: expose createServerModuleRunnerTransport
### Description Since we can't just provide a `fetchModule` function anymore, let's expose the helper. <!-- What is this PR solving? Write a clear description or reference the issues it solve...
patak-dev closed a pull request on vitejs/vite
feat: support log related functions in dev
### Description Adds support for `this.debug` / `this.info` in dev. close #13624 <!-- What is this PR solving? Write a clear description or reference the issues it solves (e.g. `fixes #123`)...
patak-dev pushed 1 commit to main vitejs/vite
  • feat: export `defaultAllowedOrigins` for user-land config and 3rd party plugins (#19259) dc8946b

View on GitHub

patak-dev closed a pull request on vitejs/vite
feat: export `defaultAllowedOrigins` for user-land config and 3rd party plugins
### Description It is not currently possible to widen the shipped allowed origins. A user or plugin must completely replace them defaults. The current value could be copy and pasted from core, b...
patak-dev closed a pull request on vitejs/vite
fix: use loc.file from rollup errors if available
### Description Currently, Rollup errors output a filename that is actually the module name rather than the file where the error occurred. In the case of less, which supports imports, this can m...
patak-dev closed an issue on vitejs/vite
Ability to disable sourcemap generation in `dev` for large files, i.e Astro 5's data layer
### Description Astro 5's [Content Layer](https://astro.build/blog/content-layer-deep-dive/) leverages a data store snapshot, implemented as a virtual module called `astro:data-layer-content`. Wh...
patak-dev pushed 1 commit to main vitejs/vite
  • fix(ssr): combine empty source mappings (#19226) ba03da2

View on GitHub

patak-dev closed a pull request on vitejs/vite
fix(ssr): combine empty source mappings
### Description - Closes https://github.com/vitejs/vite/issues/19218 Current SSR transform skips collapsing `map: { mappings: '' }` and uses magic-string generated map as is. However this is ...
patak-dev created a review on a pull request on vitejs/vite
Sounds good, let's merge this one in 6.1

View on GitHub

patak-dev pushed 22 commits to main lazuee/vite
  • docs: unify `__dirname` usage (#19176) 4f5845a
  • release: v6.0.8 c0f72a6
  • fix!: default `server.cors: false` to disallow fetching from untrusted origins b09572a
  • fix: verify token for HMR WebSocket connection 029dcd6
  • fix!: check host header to prevent DNS rebinding attacks and introduce `server.allowedHosts` bd896fb
  • release: v6.0.9 a55f8ba
  • fix: try parse `server.origin` URL (#19241) 2495022
  • release: v6.0.10 9654348
  • fix: `preview.allowedHosts` with specific values was not respected (#19246) aeb3ec8
  • fix: allow CORS from loopback addresses by default (#19249) 3d03899
  • release: v6.0.11 a0ed405
  • fix(legacy): build respect `hashCharacters` config (#19262) 3aa10b7
  • docs: fix `preview.cors` description (#19271) c9a4b7a
  • feat: add support for `.jxl` (#18855) Co-authored-by: 翠 / green <[email protected]> 57b397c
  • fix(deps): update react monorepo to v19 (major) (#18917) 93d5443
  • feat: use module runner to import the config (#18637) Co-authored-by: bluwy <[email protected]> Co-authored-by: ... b7e0e42
  • chore: unneeded name in lockfileFormats (#19275) 96092cb
  • docs: clarify browser compatibility (#19253) Co-authored-by: Bjorn Lu <[email protected]> b7bd7b0
  • feat(optimizer): support bun text lockfile (#18403) Co-authored-by: patak <[email protected]> 05b005f
  • feat: support async for proxy.bypass (#18940) Co-authored-by: 翠 / green <[email protected]> a6b9587
  • and 2 more ...

View on GitHub

patak-dev deleted a branch vitejs/vite

create-vite-external-hint

patak-dev pushed 1 commit to main vitejs/vite
  • feat(create-vite): add hint for external CLIs (#19157) b9a4cc6

View on GitHub

patak-dev pushed 1 commit to main vitejs/vite

View on GitHub

patak-dev closed an issue on vitejs/vite
proxy.bypass should support async functions
### Describe the bug I'm migrating our angular projects from webpack to esbuild/vite, and ran into a problem with the vite proxy: Any non-synchronous calls in `proxy.bypass` result in errors, th...
patak-dev closed a pull request on vitejs/vite
feat: support async for proxy.bypass
### Description closes #18920 I will add relevant tests after resolving all comments.
patak-dev created a review on a pull request on vitejs/vite

View on GitHub

patak-dev pushed 1 commit to main vitejs/vite

View on GitHub

patak-dev deleted a branch vitejs/vite

arnaud/support-bun-lock

Load more