@rip-lang/server 1.3.2 → 1.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/middleware.rip +0 -2
  2. package/package.json +1 -1
package/middleware.rip CHANGED
@@ -541,8 +541,6 @@ export serve = (opts = {}) ->
541
541
  bundleCache.json = JSON.stringify({ components, data })
542
542
  bundleCache.etag = "W/\"#{Bun.hash(bundleCache.json).toString(36)}\""
543
543
 
544
- buildBundle!
545
-
546
544
  get "#{prefix}/bundle", (c) ->
547
545
  buildBundle! unless bundleCache.json
548
546
  if c.req.header('if-none-match') is bundleCache.etag
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/server",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Pure Rip web framework and application server",
5
5
  "type": "module",
6
6
  "main": "api.rip",